Don't access isa directly.
This commit is contained in:
parent
867450105e
commit
f590ff46fe
10 changed files with 43 additions and 40 deletions
|
@ -32,12 +32,12 @@
|
|||
- (void)parser: (OFXMLParser*)parser
|
||||
foundProcessingInstructions: (OFString*)pi
|
||||
{
|
||||
@throw [OFMalformedXMLException exceptionWithClass: isa];
|
||||
@throw [OFMalformedXMLException exceptionWithClass: [self class]];
|
||||
}
|
||||
|
||||
- (void)parser: (OFXMLParser*)parser
|
||||
foundComment: (OFString*)comment
|
||||
{
|
||||
@throw [OFMalformedXMLException exceptionWithClass: isa];
|
||||
@throw [OFMalformedXMLException exceptionWithClass: [self class]];
|
||||
}
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue