analysis: change the SHT file name for the kernel analysis
authorCédric Biancheri <cdc.biancheri@gmail.com>
Mon, 25 Apr 2016 21:20:23 +0000 (17:20 -0400)
committerPatrick Tasse <patrick.tasse@gmail.com>
Wed, 27 Apr 2016 14:03:47 +0000 (10:03 -0400)
The name of the file was not explicit. It is now the ID of the analysis.

Change-Id: I0fac8475c4d459389ff1b9c718b82d4381655dce
Signed-off-by: Cédric Biancheri <cdc.biancheri@gmail.com>
Reviewed-on: https://git.eclipse.org/r/71375
Reviewed-by: Hudson CI
Reviewed-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Reviewed-by: Patrick Tasse <patrick.tasse@gmail.com>
Tested-by: Patrick Tasse <patrick.tasse@gmail.com>
analysis/org.eclipse.tracecompass.analysis.os.linux.core/src/org/eclipse/tracecompass/analysis/os/linux/core/kernel/KernelAnalysisModule.java

index dd14094ec3621a8cd02c642a5f92bbcb31ddb716..b216f7dea4d33c7c991fde3a47da70a3f45cad18 100644 (file)
@@ -37,11 +37,6 @@ import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
  */
 public class KernelAnalysisModule extends TmfStateSystemAnalysisModule {
 
-    /**
-     * The file name of the History Tree
-     */
-    public static final String HISTORY_TREE_FILE_NAME = "stateHistory.ht"; //$NON-NLS-1$
-
     /** The ID of this analysis module */
     public static final String ID = "org.eclipse.tracecompass.analysis.os.linux.kernel"; //$NON-NLS-1$
 
@@ -102,12 +97,6 @@ public class KernelAnalysisModule extends TmfStateSystemAnalysisModule {
         return new KernelStateProvider(trace, layout);
     }
 
-    @Override
-    @NonNull
-    protected String getSsFileName() {
-        return HISTORY_TREE_FILE_NAME;
-    }
-
     @Override
     protected String getFullHelpText() {
         return NonNullUtils.nullToEmptyString(Messages.LttngKernelAnalysisModule_Help);
This page took 0.026015 seconds and 5 git commands to generate.