analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / event / lookup / TmfCallsite.java
index 6bd8b3efed4bf495fc69a0cf45b3aeab7af6e905..e09907be08d10d09de51da8ef02351402fe4a269 100644 (file)
@@ -17,7 +17,6 @@ import static org.eclipse.tracecompass.common.core.NonNullUtils.equalsNullable;
 /**
  * TMF call site information for source code lookup.
  *
- * @since 2.0
  * @author Bernd Hufmann
  */
 public class TmfCallsite implements ITmfCallsite {
@@ -27,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.024847 seconds and 5 git commands to generate.