Rename 'locationData' to 'locationInfo' (for lack of a better name...)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / TmfTraceStub.java
index fed0590eb3105e8f4fe7d50cbf20aa23c49fb5a9..e6639cae2f99d89700ba3632a23404ad146074a8 100644 (file)
@@ -222,7 +222,7 @@ public class TmfTraceStub extends TmfTrace implements ITmfEventParser {
                     long loc  = 0;
                     long rank = 0;
                     if (location != null) {
-                        loc = (Long) location.getLocationData();
+                        loc = (Long) location.getLocationInfo();
                         rank = ITmfContext.UNKNOWN_RANK;
                     }
                     if (loc != fTrace.getFilePointer()) {
@@ -270,8 +270,8 @@ public class TmfTraceStub extends TmfTrace implements ITmfEventParser {
         fLock.lock();
         try {
             if (fTrace != null) {
-                if (location.getLocationData() instanceof Long) {
-                    return (double) ((Long) location.getLocationData()) / fTrace.length();
+                if (location.getLocationInfo() instanceof Long) {
+                    return (double) ((Long) location.getLocationInfo()) / fTrace.length();
                 }
             }
         } catch (final IOException e) {
This page took 0.026065 seconds and 5 git commands to generate.