Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion M13OrderedDictionary.m
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ - (id)firstEntryInCommonWithOrderedDictionary:(M13OrderedDictionary *)otherOrder
int i = 0;
while (i < temp1.count && object == nil) {
if ([[self objectForKey:[temp1 objectAtIndex:i]] isEqual:[otherOrderedDictionary objectForKey:[temp1 objectAtIndex:i]]]) {
objects = [self objectForKey:[temp1 objectAtIndex:i]];
object = [self objectForKey:[temp1 objectAtIndex:i]];
}
}
return object;
Expand Down