remove useless comments

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34442 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-01-06 12:48:49 +00:00
parent 42f0192c2c
commit 460b61e164

View file

@ -200,8 +200,6 @@ GS_PRIVATE_INTERNAL(NSXMLNode)
- (id) copyWithZone: (NSZone*)zone
{
id c = [[self class] allocWithZone: zone];
// NSEnumerator *en = [internal->children objectEnumerator];
// id obj = nil;
c = [c initWithKind: internal->kind options: internal->options];
[c setName: [self name]];
@ -209,16 +207,8 @@ GS_PRIVATE_INTERNAL(NSXMLNode)
[c setObjectValue: [self objectValue]];
[c setStringValue: [self stringValue]];
/*
while ((obj = [en nextObject]) != nil)
{
NSXMLNode *n = [obj copyWithZone:zone];
[self addChild: n];
}
*/
return c;
}
}
- (void) dealloc
{