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 / struct / StructDeclarationParser.java
index 557966935a551fa2e58b82365ec7284682581f37..3e6b52f5c40bb03dd503264d08f60df22fec490d 100644 (file)
@@ -27,7 +27,7 @@ import org.eclipse.tracecompass.internal.ctf.core.event.metadata.tsdl.TypeDeclar
  * @author Matthew Khouzam
  *
  */
-public class StructDeclarationParser extends AbstractScopedCommonTreeParser {
+public final class StructDeclarationParser extends AbstractScopedCommonTreeParser {
 
     /**
      * Parameter object
@@ -61,7 +61,7 @@ public class StructDeclarationParser extends AbstractScopedCommonTreeParser {
     /**
      * The instance
      */
-    public final static StructDeclarationParser INSTANCE = new StructDeclarationParser();
+    public static final StructDeclarationParser INSTANCE = new StructDeclarationParser();
 
     private StructDeclarationParser() {
     }
This page took 0.025038 seconds and 5 git commands to generate.