Overview
Comment: | Fix a type mistmach (interface vs. implementation). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e493aac469926ea5c544ce3f6643e1e7 |
User & Date: | js on 2011-09-09 19:15:49 |
Other Links: | manifest | tags |
Context
2011-09-09
| ||
23:22 | More robust floating point endianess check. check-in: 7ff8345e11 user: js tags: trunk | |
19:15 | Fix a type mistmach (interface vs. implementation). check-in: e493aac469 user: js tags: trunk | |
13:35 | [pool release] can never throw by convention now. check-in: 798d9e6320 user: js tags: trunk | |
Changes
Modified src/OFMutableDictionary.m from [b6a6426560] to [4c5a03559b].
︙ | ︙ | |||
62 63 64 65 66 67 68 | initWithKey: firstKey arguments: arguments]; va_end(arguments); return ret; } | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | initWithKey: firstKey arguments: arguments]; va_end(arguments); return ret; } - initWithKey: (id)firstKey arguments: (va_list)arguments { return (id)[[OFMutableDictionary_hashtable alloc] initWithKey: firstKey arguments: arguments]; } |
︙ | ︙ | |||
126 127 128 129 130 131 132 | selector: _cmd]; } return [super init]; } - (void)setObject: (id)object | | | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | selector: _cmd]; } return [super init]; } - (void)setObject: (id)object forKey: (id)key { @throw [OFNotImplementedException newWithClass: isa selector: _cmd]; } - (void)removeObjectForKey: (id)key { @throw [OFNotImplementedException newWithClass: isa selector: _cmd]; } - copy { |
︙ | ︙ |