Re #1560. Remove obsolete function.

This commit is contained in:
Alexander Ljungberg
2012-06-10 01:18:56 +01:00
parent e232b18b94
commit f538cbc51d
-13
View File
@@ -428,19 +428,6 @@ var sortArrayUsingFunction = function(array, aFunction, aContext)
}
}
// sort using sort descriptors
var compareObjectsUsingDescriptors = function(lhs, rhs, descriptors)
{
var result = CPOrderedSame,
i = 0,
n = [descriptors count];
while (i < n && result === CPOrderedSame)
result = [descriptors[i++] compareObject:lhs withObject:rhs];
return result;
};
// Observe that the sort descriptors has the reversed order by the caller
var sortArrayUsingJSDescriptors = function(a, d)
{