Skip to content

Commit 4f4c280

Browse files
committed
Rolled back change accidentally committed
1 parent a9fc876 commit 4f4c280

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

Source/UZKArchive.m

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,7 @@ - (BOOL)extractFilesTo:(NSString *)destinationDirectory
375375
error:(NSError * __autoreleasing*)error
376376
{
377377
NSError *listError = nil;
378-
NSArray *fileInfo = [[self listFileInfo:&listError] sortedArrayUsingComparator:^NSComparisonResult(UZKFileInfo* _Nonnull obj1, UZKFileInfo* _Nonnull obj2) {
379-
return ([obj1.filename isGreaterThan:obj2.filename]
380-
? NSOrderedAscending
381-
: NSOrderedDescending);
382-
}];
378+
NSArray *fileInfo = [self listFileInfo:&listError];
383379

384380
if (!fileInfo || listError) {
385381
NSLog(@"Error listing contents of archive: %@", listError);

0 commit comments

Comments
 (0)