@@ -26,10 +26,18 @@ line: (size_t)line { return [[[self alloc] initWithClass: class_ line: line] autorelease]; } + +- init +{ + Class c = isa; + [self release]; + @throw [OFNotImplementedException exceptionWithClass: c + selector: _cmd]; +} - initWithClass: (Class)class_ line: (size_t)line_ { self = [super initWithClass: class_]; @@ -37,18 +45,10 @@ line = line_; return self; } -- init -{ - Class c = isa; - [self release]; - @throw [OFNotImplementedException exceptionWithClass: c - selector: _cmd]; -} - - (OFString*)description { if (description != nil) return description;