@@ -24,11 +24,11 @@ uint32_t fullhash, hash; of_dictionary_list_object_t *iter; if (key == nil || obj == nil) @throw [OFInvalidArgumentException newWithClass: isa - andSelector: _cmd]; + selector: _cmd]; fullhash = [key hash]; hash = fullhash & (size - 1); if (data[hash] == nil) @@ -66,11 +66,11 @@ uint32_t hash; of_dictionary_list_object_t *iter; if (key == nil) @throw [OFInvalidArgumentException newWithClass: isa - andSelector: _cmd]; + selector: _cmd]; hash = [key hash] & (size - 1); if (data[hash] == nil) return self; @@ -99,11 +99,11 @@ size_t newsize, i; of_dictionary_list_object_t *iter; if (hashsize < 8 || hashsize >= 28) @throw [OFInvalidArgumentException newWithClass: isa - andSelector: _cmd]; + selector: _cmd]; newsize = (size_t)1 << hashsize; newdata = [self allocMemoryForNItems: newsize withSize: sizeof(OFList*)]; memset(newdata, 0, newsize * sizeof(OFList*));