@@ -14,16 +14,17 @@ * file. */ #include "config.h" +#include + #import "OFNull.h" #import "OFString.h" #import "OFXMLElement.h" #import "OFInvalidArgumentException.h" -#import "OFNotImplementedException.h" #import "autorelease.h" static OFNull *null = nil; @@ -106,10 +107,12 @@ return OF_RETAIN_COUNT_MAX; } - (void)dealloc { - @throw [OFNotImplementedException exceptionWithClass: [self class] - selector: _cmd]; - [super dealloc]; /* Get rid of a stupid warning */ + [self doesNotRecognizeSelector: _cmd]; + abort(); + + /* Get rid of a stupid warning */ + [super dealloc]; } @end