diff --git a/Source/NSGDictionary.m b/Source/NSGDictionary.m index 4a819ee8c..415bd5fa3 100644 --- a/Source/NSGDictionary.m +++ b/Source/NSGDictionary.m @@ -90,7 +90,6 @@ forKeys: (NSString**)keys count: (unsigned)count - (unsigned) count - - objectForKey: (NSString*)aKey - (NSEnumerator*) keyEnumerator - (NSEnumerator*) objectEnumerator */ @@ -119,6 +118,13 @@ [self putObject: anObject atKey: aKey]; } +- objectForKey: aKey +{ + /* xxx Should I change the method name in Dictionary? + I don't really want to; I think "at" is better. */ + return [self objectAtKey: aKey]; +} + - (void) removeObjectForKey:(NSString *)aKey { [self removeObjectAtKey: aKey];