1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 01:35:39 +02:00

remove comments.

This commit is contained in:
Alain Magloire 2004-02-19 16:04:11 +00:00
parent 3e7cdc86af
commit 2eb7c8d6d8

View file

@ -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 {