ObjFW  Diff

Differences From Artifact [92f13cee04]:

To Artifact [ea4e6e4445]:


45
46
47
48
49
50
51
52
53
54
55
56

57
58
59
60

61
62
63
64
65
66
67
68
69
45
46
47
48
49
50
51



52

53
54
55
56

57


58
59
60
61
62
63
64







-
-
-

-
+



-
+
-
-







	[_parser release];

	[super dealloc];
}

- (OFString*)description
{
	if (_description != nil)
		return _description;

	if (_parser != nil)
		_description = [[OFString alloc] initWithFormat:
		return [OFString stringWithFormat:
		    @"The XML parser in class %@ encountered malformed XML!",
		    _inClass];
	else
		_description = @"An XML parser encountered malformed XML!";
		return @"An XML parser encountered malformed XML!";

	return _description;
}

- (OFXMLParser*)parser
{
	OF_GETTER(_parser, NO)
}
@end