Differences From Artifact [0d9c86e55f]:
- File src/OFDictionary_hashtable.m — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js, size: 8963) [annotate] [blame] [check-ins using]
To Artifact [bb3cc5cb8b]:
- File src/OFDictionary_hashtable.m — part of check-in [ca15726954] at 2015-02-19 00:08:57 on branch trunk — OFDictionary_hashtable: Use release in dealloc (user: js, size: 8963) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
291 292 293 294 295 296 297 | } return self; } - (void)dealloc { | | | 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | } return self; } - (void)dealloc { [_mapTable release]; [super dealloc]; } - (id)objectForKey: (id)key { return [_mapTable valueForKey: key]; |
︙ | ︙ |