tmf: Make ITmfGraphEntry.getChildren() return a List
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / views / controlflow / ControlFlowEntry.java
index 97b6ef03e753d8bf3be419e1a86aeabc100e7f08..3e1fe97e443e243a265c2ea533bc0889caf01e03 100644 (file)
@@ -81,8 +81,8 @@ public class ControlFlowEntry implements ITimeGraphEntry {
     }
 
     @Override
-    public ControlFlowEntry[] getChildren() {
-        return fChildren.toArray(new ControlFlowEntry[0]);
+    public List<ControlFlowEntry> getChildren() {
+        return fChildren;
     }
 
     @Override
This page took 0.024006 seconds and 5 git commands to generate.