tmf: Fix regression of XML analysis combined with custom text parser not working
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Wed, 6 May 2015 21:28:36 +0000 (17:28 -0400)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Fri, 8 May 2015 01:39:21 +0000 (21:39 -0400)
bug: 466641
Change-Id: I9c6ea6014e6f25f73e52ed182b6abc2ab2394a17
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/47382
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/event/TmfEvent.java

index b4f85b0c61f5224f0dd64e36113bd848bcbe2bc8..88e07dd45db81e10249d21a5c9606648ce2dde03 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2014 Ericsson
+ * Copyright (c) 2009, 2015 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License v1.0 which
@@ -141,7 +141,7 @@ public class TmfEvent extends PlatformObject implements ITmfEvent {
      */
     @Override
     public String getName() {
-        ITmfEventType type = fType;
+        ITmfEventType type = getType();
         if (type != null) {
             return type.getName();
         }
This page took 0.025533 seconds and 5 git commands to generate.