Don't access isa directly.

This commit is contained in:
Jonathan Schleifer 2012-07-12 05:34:20 +02:00
parent 867450105e
commit f590ff46fe
10 changed files with 43 additions and 40 deletions

View file

@ -116,7 +116,7 @@
"Nodeprep", 0)) != STRINGPREP_OK) || (nodepart[0] == '\0') ||
(strlen(nodepart) > 1023))
@throw [XMPPStringPrepFailedException
exceptionWithClass: isa
exceptionWithClass: [self class]
connection: nil
profile: @"Nodeprep"
string: node_];
@ -145,7 +145,7 @@
"Nameprep", 0)) != STRINGPREP_OK) || (srv[0] == '\0') ||
(strlen(srv) > 1023))
@throw [XMPPStringPrepFailedException
exceptionWithClass: isa
exceptionWithClass: [self class]
connection: nil
profile: @"Nameprep"
string: domain_];
@ -180,7 +180,7 @@
"Resourceprep", 0)) != STRINGPREP_OK) || (res[0] == '\0') ||
(strlen(res) > 1023))
@throw [XMPPStringPrepFailedException
exceptionWithClass: isa
exceptionWithClass: [self class]
connection: nil
profile: @"Resourceprep"
string: resource_];