- Minor modification of the FW API (better trace/parser integration)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / trace / TmfEventParserStub.java
index 68d32fb04359f96502589e578f0eb8391f7ed482..131f75e128cf18e7800b78d21be1ea8e518397c1 100644 (file)
@@ -65,11 +65,11 @@ public class TmfEventParserStub implements ITmfEventParser {
     static final String typePrefix = "Type-";
     public TmfEvent getNextEvent(ITmfTrace eventStream) throws IOException {
 
-        if (! (eventStream instanceof TmfEventStreamStub)) {
+        if (! (eventStream instanceof TmfTraceStub)) {
             return null;
         }
 
-        RandomAccessFile stream = ((TmfEventStreamStub) eventStream).getStream();
+        RandomAccessFile stream = ((TmfTraceStub) eventStream).getStream();
 
         try {
             long ts        = stream.readLong();
This page took 0.024019 seconds and 5 git commands to generate.