tmf: Add function name mapping to the Callstack View
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / callstack / CallStackStateProvider.java
index 7284635fc9649310c4010402162ad02db719a92f..9341b6953e6e548a71db96b42e4e3bc3a8ad39cc 100644 (file)
@@ -76,12 +76,6 @@ public abstract class CallStackStateProvider extends AbstractTmfStateProvider {
     /** Dummy function name for when no function is expected */
     private static final String NO_FUNCTION = "no function"; //$NON-NLS-1$
 
-    /**
-     * Version number of this state provider. Please bump this if you modify
-     * the contents of the generated state history in some way.
-     */
-    private static final int VERSION = 0;
-
     /**
      * Default constructor
      *
@@ -92,11 +86,6 @@ public abstract class CallStackStateProvider extends AbstractTmfStateProvider {
         super(trace, ITmfEvent.class, ID);
     }
 
-    @Override
-    public int getVersion() {
-        return VERSION;
-    }
-
     @Override
     protected void eventHandle(ITmfEvent event) {
         if (!considerEvent(event)) {
This page took 0.024055 seconds and 5 git commands to generate.