* Source/NSXMLDTDNode.m: Remove uneeded releases in dealloc.

* Source/NSXMLPrivate.h: Remove ivars from NSXMLDTDNode.h



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/nsxml_using_libxml2@34578 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2012-01-18 17:53:11 +00:00
parent f3a158c77f
commit e1ac9467bf
3 changed files with 5 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2012-01-18 12:52-EST Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSXMLDTDNode.m: Remove uneeded releases in dealloc.
* Source/NSXMLPrivate.h: Remove ivars from NSXMLDTDNode.h
2012-01-18 12:22-EST Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSXMLNode.m: Add code in initWithKind

View file

@ -35,9 +35,6 @@ GS_PRIVATE_INTERNAL(NSXMLDTDNode)
{
if (GS_EXISTS_INTERNAL)
{
[internal->notationName release];
[internal->publicID release];
[internal->systemID release];
}
[super dealloc];
}

View file

@ -160,10 +160,6 @@ StringFromXMLString(const unsigned char *bytes, unsigned length)
*/
#define GS_NSXMLDTDNode_IVARS SUPERIVARS(GS_NSXMLNode_IVARS) \
NSUInteger DTDKind; \
NSString *notationName; \
NSString *publicID; \
NSString *systemID; \
/* Instance variables for NSXMLElement with/without the instance
* variable 'inherited' from NSXMLNode.