Skip to content

Commit

Permalink
Add additional reserved keywords
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed May 23, 2024
1 parent 77abb41 commit ec009ce
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
public class NameSanitizer {
private static final Set<String> reservedWords = new HashSet<>() {
{
add("default");
add("native");
add("transient");
}
};
Expand Down

0 comments on commit ec009ce

Please sign in to comment.