Remove the generic location (replace by Comparable)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / TmfEmptyTraceStub.java
index 7a5fd2684e5b303830c2ba2eeed18e8f1fd797ba..5d81ac3c85b561d87adba6971c385b2eddf850c5 100644 (file)
@@ -44,7 +44,7 @@ public class TmfEmptyTraceStub extends TmfTraceStub {
     // ------------------------------------------------------------------------
 
     @Override
-    public TmfContext seekEvent(final ITmfLocation<?> location) {
+    public TmfContext seekEvent(final ITmfLocation location) {
         return new TmfContext();
     }
 
@@ -54,12 +54,12 @@ public class TmfEmptyTraceStub extends TmfTraceStub {
     }
 
     @Override
-    public double getLocationRatio(ITmfLocation<?> location) {
+    public double getLocationRatio(ITmfLocation location) {
         return 0;
     }
 
     @Override
-    public ITmfLocation<Long> getCurrentLocation() {
+    public ITmfLocation getCurrentLocation() {
         return null;
     }
 
This page took 0.024668 seconds and 5 git commands to generate.