Skip to content

Commit

Permalink
Fix for CPArray -removeObjectsAtIndexes:
Browse files Browse the repository at this point in the history
  • Loading branch information
jarib authored and Ross Boucher committed Jan 16, 2009
1 parent 869db92 commit cc1a3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Foundation/CPArray.j
Expand Up @@ -1075,7 +1075,7 @@
while (index != CPNotFound)
{
[self removeObjectAtIndex:index];
index = [anIndexSet indexSmallerThanIndex:index];
index = [anIndexSet indexLessThanIndex:index];
}
}

Expand Down

0 comments on commit cc1a3ee

Please sign in to comment.