From 26afe7c0d84c8e448dd2628c2f98aebbb924c42b Mon Sep 17 00:00:00 2001 From: Randall Luecke Date: Sun, 24 Apr 2011 22:28:41 -0400 Subject: [PATCH] Fix return type on sortUsingDescriptors in CPMutableArray. --- Foundation/CPArray/CPMutableArray.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CPArray/CPMutableArray.j b/Foundation/CPArray/CPMutableArray.j index bf0874224..e9588dd51 100644 --- a/Foundation/CPArray/CPMutableArray.j +++ b/Foundation/CPArray/CPMutableArray.j @@ -332,7 +332,7 @@ [self replaceObjectAtIndex:otherIndex withObject:temporary]; } -- (CPArray)sortUsingDescriptors:(CPArray)descriptors +- (void)sortUsingDescriptors:(CPArray)descriptors { [self sortUsingFunction:compareObjectsUsingDescriptors context:descriptors]; }