Remove the generic location (replace by Comparable)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfLightweightContext.java
index 2408fe8934857998f8ba613e61ce4f5c392ab4f7..cb1d0dc06c5ada645197a63fb188a4878ab26f3e 100644 (file)
@@ -73,7 +73,7 @@ public class CtfTmfLightweightContext implements ITmfContext {
     }
 
     @Override
-    public ITmfLocation<? extends Comparable<?>> getLocation() {
+    public ITmfLocation getLocation() {
         return curLocation;
     }
 
@@ -83,7 +83,7 @@ public class CtfTmfLightweightContext implements ITmfContext {
     }
 
     @Override
-    public void setLocation(ITmfLocation<? extends Comparable<?>> location) {
+    public void setLocation(ITmfLocation location) {
         curLocation = (CtfLocation) location;
         getIterator().seek(curLocation.getLocationData());
     }
This page took 0.025089 seconds and 5 git commands to generate.