ctf: fix Modifier order to always be static final
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / metadata / tsdl / TypeDeclarationParser.java
index 99ae771005b31c43cfb6106aa53d865722baac87..b7345c6ba27c6fa9eb550bdb2723a7e98f3e184f 100644 (file)
@@ -24,7 +24,7 @@ import org.eclipse.tracecompass.internal.ctf.core.event.metadata.ParseException;
  * @author Matthew Khouzam
  *
  */
-public class TypeDeclarationParser extends AbstractScopedCommonTreeParser {
+public final class TypeDeclarationParser extends AbstractScopedCommonTreeParser {
 
     /**
      * Parameter object with a current scope and a list of pointers
@@ -54,7 +54,7 @@ public class TypeDeclarationParser extends AbstractScopedCommonTreeParser {
     /**
      * Instance
      */
-    public final static TypeDeclarationParser INSTANCE = new TypeDeclarationParser();
+    public static final TypeDeclarationParser INSTANCE = new TypeDeclarationParser();
 
     private TypeDeclarationParser() {
     }
This page took 0.02971 seconds and 5 git commands to generate.