ObjFW  Check-in [a25f44b236]

Overview
Comment:Fix a name conflict in OFHashAlreadyCalculatedException.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a25f44b2365f0f62359c4fd678635bc317cfbd4db94a998743e652f1ba5ad799
User & Date: js on 2011-08-04 18:35:59
Other Links: manifest | tags
Context
2011-08-04
18:37
Fix a name conflict in OFHashAlreadyCalculatedException. check-in: 507057d9a6 user: js tags: trunk
18:35
Fix a name conflict in OFHashAlreadyCalculatedException. check-in: a25f44b236 user: js tags: trunk
17:18
Add a note about usage of super to OFMutableCArray. check-in: dc8b06a5aa user: js tags: trunk
Changes

Modified src/exceptions/OFHashAlreadyCalculatedException.h from [1d709ca1d5] to [a3acfaef4e].

47
48
49
50
51
52
53
54
55
 */
- initWithClass: (Class)class_
	   hash: (OFHash*)hash;

/**
 * \return The hash which has already been calculated
 */
- (OFHash*)hash;
@end







|

47
48
49
50
51
52
53
54
55
 */
- initWithClass: (Class)class_
	   hash: (OFHash*)hash;

/**
 * \return The hash which has already been calculated
 */
- (OFHash*)hashObject;
@end

Modified src/exceptions/OFHashAlreadyCalculatedException.m from [0923b30e46] to [d0daf7e25e].

68
69
70
71
72
73
74
75
76
77
78
79
	description = [[OFString alloc] initWithFormat:
	    @"The hash has already been calculated in class %@ and thus no new "
	    @"data can be added", inClass];

	return description;
}

- (OFHash*)hash
{
	return hash;
}
@end







|




68
69
70
71
72
73
74
75
76
77
78
79
	description = [[OFString alloc] initWithFormat:
	    @"The hash has already been calculated in class %@ and thus no new "
	    @"data can be added", inClass];

	return description;
}

- (OFHash*)hashObject
{
	return hash;
}
@end