ObjFW  Check-in [95aa3a147e]

Overview
Comment:Prevent one more wrong call to an init method.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 95aa3a147e0547b330ae8f1fb48a860bd2edb1e5264bc2b59ac5b0c15414c79c
User & Date: js on 2009-07-19 17:02:13
Other Links: manifest | tags
Context
2009-07-19
18:14
Add support for C strings encoded in ISO 8859-1. check-in: 8216fb9343 user: js tags: trunk
17:02
Prevent one more wrong call to an init method. check-in: 95aa3a147e user: js tags: trunk
16:32
Add PLATFORMS file. check-in: 0123352146 user: js tags: trunk
Changes

Modified src/OFFile.m from [e3abf581b8] to [b0b9385012].

217
218
219
220
221
222
223







224
225
226
227
228
229
230
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237







+
+
+
+
+
+
+







{
	self = [super init];

	fp = fp_;

	return self;
}

- initWithPath: (OFString*)path
	  mode: (OFString*)mode
{
	@throw [OFNotImplementedException newWithClass: isa
					      selector: _cmd];
}

- autorelease
{
	return self;
}

- retain