ctf: minor LexicalScope fixups
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 2 May 2014 03:05:24 +0000 (23:05 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 2 May 2014 17:54:20 +0000 (13:54 -0400)
Two mislabelled scopes were fixes

Change-Id: I2a44d3fda57551f84a320432493c1e1d1cb61e8f
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/25859
Tested-by: Hudson CI
Reviewed-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
org.eclipse.linuxtools.ctf.core/src/org/eclipse/linuxtools/ctf/core/event/scope/LexicalScope.java

index e2b6e1a6d078e9e6de7945c71f561bde3c6f063b..daa6215d3a125ecf3d4500d6c3f611169e833c34 100644 (file)
@@ -119,7 +119,7 @@ public class LexicalScope implements Comparable<LexicalScope> {
      *
      * @since 3.0
      */
-    public static final LexicalScope TRACE_PACKET_HEADER = new LexicalScope(STREAM_EVENT, "header"); //$NON-NLS-1$
+    public static final LexicalScope TRACE_PACKET_HEADER = new LexicalScope(TRACE_PACKET, "header"); //$NON-NLS-1$
 
     /**
      * Stream event context
@@ -133,7 +133,7 @@ public class LexicalScope implements Comparable<LexicalScope> {
      *
      * @since 3.0
      */
-    public static final LexicalScope STREAM_EVENT_HEADER = new LexicalScope(TRACE_PACKET, "header"); //$NON-NLS-1$
+    public static final LexicalScope STREAM_EVENT_HEADER = new LexicalScope(STREAM_EVENT, "header"); //$NON-NLS-1$
 
     /**
      * Fields in an event
@@ -170,6 +170,7 @@ public class LexicalScope implements Comparable<LexicalScope> {
     private final String fPath;
     private final Map<String, LexicalScope> fChildren;
 
+
     /**
      * The scope constructor
      *
This page took 0.032059 seconds and 5 git commands to generate.