ss: Remove checkValidTime from the backend interface
[deliverable/tracecompass.git] / org.eclipse.tracecompass.statesystem.core / src / org / eclipse / tracecompass / statesystem / core / backend / InMemoryBackend.java
index 3fb4bf3cbdc3586832716ba10b17299b773f9b58..6a9cdd41387c20af630394a93c9b4c6b4688ab5f 100644 (file)
@@ -171,8 +171,7 @@ public class InMemoryBackend implements IStateHistoryBackend {
         throw new AttributeNotFoundException();
     }
 
-    @Override
-    public boolean checkValidTime(long t) {
+    private boolean checkValidTime(long t) {
         if (t >= startTime && t <= latestTime) {
             return true;
         }
This page took 0.023805 seconds and 5 git commands to generate.