Skip to content

Commit 4eef073

Browse files
committed
xml: Implement XmlPatternAnalysis.clearPersistentData()
So that the corresponding state system and segement store is deleted when calling clearPersistentData(). [Fixed] Implement XmlPatternAnalysis.clearPersistentData() Fixes #267 Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
1 parent cc5d49e commit 4eef073

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • tmf/org.eclipse.tracecompass.tmf.analysis.xml.core/src/org/eclipse/tracecompass/internal/tmf/analysis/xml/core/pattern/stateprovider

tmf/org.eclipse.tracecompass.tmf.analysis.xml.core/src/org/eclipse/tracecompass/internal/tmf/analysis/xml/core/pattern/stateprovider/XmlPatternAnalysis.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,4 +381,10 @@ public boolean waitForCompletion(@NonNull IProgressMonitor monitor) {
381381
return properties;
382382
}
383383

384+
@Override
385+
public void clearPersistentData() {
386+
super.clearPersistentData();
387+
fSegmentStoreModule.clearPersistentData();
388+
fStateSystemModule.clearPersistentData();
389+
}
384390
}

0 commit comments

Comments
 (0)