Skip to content

Commit 334c415

Browse files
committed
Fix NPE
1 parent 900c5dd commit 334c415

File tree

1 file changed

+20
-26
lines changed
  • jme3-glsl-highlighter/src/com/jme3/gde/glsl/highlighter/lexer

1 file changed

+20
-26
lines changed

jme3-glsl-highlighter/src/com/jme3/gde/glsl/highlighter/lexer/GlslLexer.java

+20-26
Original file line numberDiff line numberDiff line change
@@ -190,21 +190,26 @@ public Token<GlslTokenID> nextToken() {
190190
}
191191
}
192192
}
193-
if (current == null) {
194-
}
195-
switch (current) {
196-
case BASIC_TYPE:
197-
return token(GlslTokenID.PRIMITIVE);
198-
case KEYWORD:
199-
return token(GlslTokenID.KEYWORD);
200-
case BUILTIN_VARIABLE:
201-
return token(GlslTokenID.BUILTIN_VARIABLE);
202-
case BUILTIN_FUNCTION:
203-
return token(GlslTokenID.BUILTIN_FUNCTION);
193+
if (current != null) {
194+
switch (current) {
195+
case BASIC_TYPE -> {
196+
return token(GlslTokenID.PRIMITIVE);
197+
}
198+
case KEYWORD -> {
199+
return token(GlslTokenID.KEYWORD);
200+
}
201+
case BUILTIN_VARIABLE -> {
202+
return token(GlslTokenID.BUILTIN_VARIABLE);
203+
}
204+
case BUILTIN_FUNCTION -> {
205+
return token(GlslTokenID.BUILTIN_FUNCTION);
206+
}
207+
}
204208
}
205209
}
206210
}
207211
}
212+
208213
//Those have to be recognized separately for closing bracket recognition
209214
return token(GlslTokenID.TEXT);
210215
}
@@ -224,21 +229,10 @@ private Token<GlslTokenID> token(GlslTokenID id) {
224229
}
225230

226231
private boolean isDigit(int c) {
227-
switch (c) {
228-
case '0':
229-
case '1':
230-
case '2':
231-
case '3':
232-
case '4':
233-
case '5':
234-
case '6':
235-
case '7':
236-
case '8':
237-
case '9':
238-
return true;
239-
default:
240-
return false;
241-
}
232+
return switch (c) {
233+
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' -> true;
234+
default -> false;
235+
};
242236
}
243237

244238
private void readTillNewLine() {

0 commit comments

Comments
 (0)