analysis: Add root trace entries to Control Flow view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / controlflow / ControlFlowEntry.java
index cfdfcf331603364de146177d5ba0c82bb50fef1a..0a1642be8c6e3b115677af183df3938037616550 100644 (file)
@@ -119,10 +119,7 @@ public class ControlFlowEntry extends TimeGraphEntry {
         if (pattern.matcher(Integer.toString(fThreadQuark)).find()) {
             return true;
         }
-        if (pattern.matcher(Utils.formatTime(getStartTime(), TimeFormat.CALENDAR, Resolution.NANOSEC)).find()) {
-            return true;
-        }
-        return pattern.matcher(fTrace.getName()).find();
+        return (pattern.matcher(Utils.formatTime(getStartTime(), TimeFormat.CALENDAR, Resolution.NANOSEC)).find());
     }
 
     @Override
This page took 0.036927 seconds and 5 git commands to generate.