From cc1a3ee93fd89f062a8d3b29e7feef50b5610987 Mon Sep 17 00:00:00 2001 From: Jari Bakken Date: Fri, 16 Jan 2009 01:20:38 +0100 Subject: [PATCH] Fix for CPArray -removeObjectsAtIndexes: --- Foundation/CPArray.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CPArray.j b/Foundation/CPArray.j index da1a28f985..cb4951ad6e 100755 --- a/Foundation/CPArray.j +++ b/Foundation/CPArray.j @@ -1075,7 +1075,7 @@ while (index != CPNotFound) { [self removeObjectAtIndex:index]; - index = [anIndexSet indexSmallerThanIndex:index]; + index = [anIndexSet indexLessThanIndex:index]; } }