TMF: Have IAnalysisModule#setTrace return boolean instead of throw exception
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / analysis / TestRequirementAnalysis.java
index aaabc62250e6d885742d4fc35c8d0bc1b32519d4..33a37ca56e500d90f2a3d61f294f68798241d8d2 100644 (file)
@@ -60,7 +60,8 @@ public class TestRequirementAnalysis extends TmfAbstractAnalysisModule {
     }
 
     @Override
-    public void setTrace(ITmfTrace trace) throws TmfAnalysisException {
+    public boolean setTrace(ITmfTrace trace) throws TmfAnalysisException {
+        return super.setTrace(trace);
     }
 
     @Override
This page took 0.023768 seconds and 5 git commands to generate.