From 2eb7c8d6d8a86b7062d72637a065966363f6f040 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 19 Feb 2004 16:04:11 +0000 Subject: [PATCH] remove comments. --- .../cdt/debug/mi/core/GDBTypeParser.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java index 0b75fde1021..aeee5419509 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java @@ -238,26 +238,6 @@ public class GDBTypeParser { } void prependChild(int kind, int d) { -/* - GDBDerivedType dType = new GDBDerivedType(genericType, kind, d); - if (gdbDerivedType != null) { - // get to the last node in the list and add the new to it - GDBType leaf = genericType; - GDBDerivedType node; - boolean keepGoing = true; - for (node = gdbDerivedType; keepGoing;) { - leaf = node.getChild(); - if (leaf instanceof GDBDerivedType) { - node = (GDBDerivedType) leaf; - } else { - keepGoing = false; - } - } - node.setChild(dType); - } else { - gdbDerivedType = dType; - } -*/ if (gdbDerivedType == null) { gdbDerivedType = new GDBDerivedType(genericType, kind, d); } else {