Index: src/OFDictionary_hashtable.m ================================================================== --- src/OFDictionary_hashtable.m +++ src/OFDictionary_hashtable.m @@ -805,11 +805,11 @@ - (void)reset { if (mutationsPtr != NULL && *mutationsPtr != mutations) @throw [OFEnumerationMutationException - exceptionWithClass: [self class] + exceptionWithClass: [dictionary class] object: dictionary]; pos = 0; } @end @@ -817,11 +817,11 @@ @implementation OFDictionaryObjectEnumerator_hashtable - (id)nextObject { if (mutationsPtr != NULL && *mutationsPtr != mutations) @throw [OFEnumerationMutationException - exceptionWithClass: [self class] + exceptionWithClass: [dictionary class] object: dictionary]; for (; pos < size && (data[pos] == NULL || data[pos] == DELETED); pos++); @@ -835,11 +835,11 @@ @implementation OFDictionaryKeyEnumerator_hashtable - (id)nextObject { if (mutationsPtr != NULL && *mutationsPtr != mutations) @throw [OFEnumerationMutationException - exceptionWithClass: [self class] + exceptionWithClass: [dictionary class] object: dictionary]; for (; pos < size && (data[pos] == NULL || data[pos] == DELETED); pos++);