22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#import "OFString.h"
@implementation OFXMLNode
- initWithSerialization: (OFXMLElement*)element
{
@try {
[self doesNotRecognizeSelector: _cmd];
abort();
} @catch (id e) {
[self release];
@throw e;
}
}
- (OFString*)stringValue
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
|
<
>
>
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#import "OFString.h"
@implementation OFXMLNode
- initWithSerialization: (OFXMLElement*)element
{
@try {
[self doesNotRecognizeSelector: _cmd];
} @catch (id e) {
[self release];
@throw e;
}
abort();
}
- (OFString*)stringValue
{
[self doesNotRecognizeSelector: _cmd];
abort();
}
|