mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 13:32:22 +00:00
remove unnecessary assignment
This commit is contained in:
@@ -178,8 +178,7 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGrou
|
||||
if(!self.fileURL) {
|
||||
return proposedExtension;
|
||||
}
|
||||
NSString *actualExtension = self.fileURL.pathExtension;
|
||||
return actualExtension;
|
||||
return self.fileURL.pathExtension;
|
||||
}
|
||||
|
||||
- (NSData *)dataOfType:(NSString *)typeName error:(NSError * _Nullable __autoreleasing *)outError {
|
||||
|
||||
Reference in New Issue
Block a user