Extend converter for modifiers by strictfp.

This commit is contained in:
Jakob Herrmann 2017-01-18 15:58:34 +01:00
parent a1bbd8b11e
commit a77b65e65c

View File

@ -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();
}