ObjFW  Diff

Differences From Artifact [476144c78b]:

To Artifact [cc9da6f502]:


210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
}

- initWithCDATA: (OFString*)CDATA_
{
	self = [super init];

	@try {
		if (CDATA_)
			@throw [OFInvalidArgumentException newWithClass: isa
							       selector: _cmd];

		CDATA = [CDATA_ copy];
	} @catch (id e) {
		[self release];
		@throw e;







|







210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
}

- initWithCDATA: (OFString*)CDATA_
{
	self = [super init];

	@try {
		if (CDATA_ == nil)
			@throw [OFInvalidArgumentException newWithClass: isa
							       selector: _cmd];

		CDATA = [CDATA_ copy];
	} @catch (id e) {
		[self release];
		@throw e;