analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / parsers / custom / CustomEventType.java
index 3416dad98f73acad33173ec22887e675b398f4d7..e7a35232d79794f0f87561c9dc6bc1a5b21c0721 100644 (file)
@@ -20,12 +20,9 @@ import org.eclipse.tracecompass.tmf.core.event.TmfEventType;
  * Event type for custom text parsers.
  *
  * @author Patrick Tassé
- * @since 3.0
  */
 public abstract class CustomEventType extends TmfEventType {
 
-    private static String CONTEXT_ID = "CustomEventType"; //$NON-NLS-1$
-
     /**
      * Constructor
      *
@@ -33,7 +30,7 @@ public abstract class CustomEventType extends TmfEventType {
      *            Trace definition
      */
     public CustomEventType(CustomTraceDefinition definition) {
-        super(CONTEXT_ID, definition.definitionName, getRootField(definition));
+        super(definition.definitionName, getRootField(definition));
     }
 
     private static ITmfEventField getRootField(CustomTraceDefinition definition) {
This page took 0.025471 seconds and 5 git commands to generate.