tmf: Rename TmfLocation.fLocation to .fLocationData
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / trace / TmfExperimentCheckpointIndexTest.java
index 6be2ca5d908a3878396f7c33abfefcaea4d9f945..79bee5853419e96b1ce90f83312066158267aec1 100644 (file)
@@ -131,7 +131,7 @@ public class TmfExperimentCheckpointIndexTest extends TestCase {
         for (int i = 0; i < checkpoints.size(); i++) {
             ITmfCheckpoint checkpoint = checkpoints.get(i);
             TmfExperimentLocation expLocation = (TmfExperimentLocation) checkpoint.getLocation();
-            TmfLocationArray locations = expLocation.getLocation();
+            TmfLocationArray locations = expLocation.getLocationData();
             ITmfContext[] trcContexts = new ITmfContext[2];
             trcContexts[0] = new TmfContext(locations.getLocations()[0], (i * pageSize) / 2);
             trcContexts[1] = new TmfContext(locations.getLocations()[1], (i * pageSize) / 2);
@@ -189,7 +189,7 @@ public class TmfExperimentCheckpointIndexTest extends TestCase {
         for (int i = 0; i < checkpoints.size(); i++) {
             ITmfCheckpoint checkpoint = checkpoints.get(i);
             TmfExperimentLocation expLocation = (TmfExperimentLocation) checkpoint.getLocation();
-            TmfLocationArray locations = expLocation.getLocation();
+            TmfLocationArray locations = expLocation.getLocationData();
             ITmfContext[] trcContexts = new ITmfContext[2];
             trcContexts[0] = new TmfContext(locations.getLocations()[0], (i * pageSize) / 2);
             trcContexts[1] = new TmfContext(locations.getLocations()[1], (i * pageSize) / 2);
This page took 0.024157 seconds and 5 git commands to generate.