ss: Remove infinite loop in debugPrint() code
[deliverable/tracecompass.git] / statesystem / org.eclipse.tracecompass.statesystem.core.tests / stubs / org / eclipse / tracecompass / statesystem / core / tests / stubs / backend / HistoryTreeClassicStub.java
index d6675c59bf0e2599ca372c23821862fc29fa0748..49354ea7db5d3c247b20fc18691ac5e4af9ae9c9 100644 (file)
@@ -166,12 +166,7 @@ public class HistoryTreeClassicStub extends HistoryTreeClassic {
         case CORE:
             try {
                 final CoreNode node = (CoreNode) currentNode;
-                /* Print the extensions, if any */
-                int extension = node.getExtensionSequenceNumber();
-                while (extension != -1) {
-                    HTNode nextNode = getTreeIO().readNode(extension);
-                    preOrderPrint(writer, printIntervals, nextNode, curDepth, ts);
-                }
+                /* If node extensions were used, they would be printed here. */
 
                 /* Print the child nodes */
                 for (int i = 0; i < node.getNbChildren(); i++) {
This page took 0.023723 seconds and 5 git commands to generate.