forked from JavaTX/JavaCompilerCore
Extend converter for modifiers by strictfp.
This commit is contained in:
parent
a1bbd8b11e
commit
a77b65e65c
@ -116,6 +116,9 @@ public class SyntaxTreeGenerator{
|
||||
else if(t.getText().equals("static")){
|
||||
newModifier = new Static();
|
||||
}
|
||||
else if(t.getText().equals("strictfp")){
|
||||
newModifier = new Strictfp();
|
||||
}
|
||||
else{
|
||||
newModifier = new Final();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user