@@ -22,19 +22,19 @@ #import "OFNotImplementedException.h" @implementation OFXMLNode - initWithSerialization: (OFXMLElement*)element { - Class c = isa; + Class c = [self class]; [self release]; @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - (OFString*)stringValue { - @throw [OFNotImplementedException exceptionWithClass: isa + @throw [OFNotImplementedException exceptionWithClass: [self class] selector: _cmd]; } - (intmax_t)decimalValue { @@ -69,11 +69,11 @@ } - (OFString*)XMLStringWithIndentation: (unsigned int)indentation level: (unsigned int)level { - @throw [OFNotImplementedException exceptionWithClass: isa + @throw [OFNotImplementedException exceptionWithClass: [self class] selector: _cmd]; } - (OFString*)description { @@ -80,14 +80,14 @@ return [self XMLStringWithIndentation: 2]; } - (OFXMLElement*)XMLElementBySerializing { - @throw [OFNotImplementedException exceptionWithClass: isa + @throw [OFNotImplementedException exceptionWithClass: [self class] selector: _cmd]; } - copy { return [self retain]; } @end