@@ -19,12 +19,10 @@ #include #import "OFAutoreleasePool.h" #import "OFArray.h" -#import "OFNotImplementedException.h" - #import "macros.h" #ifndef OF_COMPILER_TLS # import "threading.h" # import "OFInitializationFailedException.h" @@ -159,15 +157,15 @@ [super dealloc]; } - retain { - @throw [OFNotImplementedException exceptionWithClass: [self class] - selector: _cmd]; + [self doesNotRecognizeSelector: _cmd]; + abort(); } - autorelease { - @throw [OFNotImplementedException exceptionWithClass: [self class] - selector: _cmd]; + [self doesNotRecognizeSelector: _cmd]; + abort(); } @end