fix modifier order in TmfCallsite
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Wed, 1 Apr 2015 17:30:57 +0000 (13:30 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Wed, 1 Apr 2015 19:32:48 +0000 (15:32 -0400)
Change-Id: I9b3587fad9ffebdd4ef84987f1da895ab057d532
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/45048
Reviewed-by: Hudson CI
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/event/lookup/TmfCallsite.java

index 91313faf2a0b2a046f38d5cf324bdfe2f33e558a..e09907be08d10d09de51da8ef02351402fe4a269 100644 (file)
@@ -26,13 +26,13 @@ public class TmfCallsite implements ITmfCallsite {
     // ------------------------------------------------------------------------
 
     /** The file name string. */
-    final private String fFileName;
+    private final String fFileName;
 
     /** The function name. */
-    final private String fFunctionName;
+    private final String fFunctionName;
 
     /** The line number. */
-    final private long fLineNumber;
+    private final long fLineNumber;
 
     // ------------------------------------------------------------------------
     // Constructors
This page took 0.025432 seconds and 5 git commands to generate.