Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit e924667

Browse files
committed
.
1 parent 7745d46 commit e924667

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/mysema/codegen/support/KotlinSyntaxUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ public final class KotlinSyntaxUtils {
2626
private KotlinSyntaxUtils() {}
2727

2828
private static final Set<String> reserved = new HashSet<String>(Arrays.asList("abstract", "do",
29-
"finally", "import", "object", "return", "data", "var", "_", ":", "case", "else",
29+
"finally", "import", "object", "return", "data", "var", "val", "_", ":", "case", "else",
3030
"for", "lazy", "override", "open", "sealed", "try", "while", "=", "=>", "<-", "catch",
3131
"it", "package", "super", "true", "with", "<:", "class",
3232
"false", "if", "new", "private", "this", "type", "yield", "<%", ">:", "fun", "final",
33-
"implicit", "null", "protected", "throw", "val", "#", "@", "constructor", "companion",
34-
"is", "when", "?:", "internal", "get", "set", "field", "sealed", "inline"));
33+
"implicit", "null", "protected", "throw", "#", "@", "constructor", "companion",
34+
"is", "when", "?:", "internal", "get", "set", "field", "inline"));
3535

3636
public static boolean isReserved(String token) {
3737
return reserved.contains(token);

0 commit comments

Comments
 (0)