File Tree: Remove useless logging, as the issue is apparently with pCloud's FUSE host

CQTexperiment
Christopher Snowhill 2022-01-23 14:43:22 -08:00
parent 06adf472e9
commit 003b30cba2
1 changed files with 1 additions and 8 deletions

View File

@ -17,8 +17,6 @@
#import "SmartFolderNode.h"
#import "ContainerNode.h"
#import "Logging.h"
@implementation PathNode
//From http://developer.apple.com/documentation/Cocoa/Conceptual/LowLevelFileMgmt/Tasks/ResolvingAliases.html
@ -57,12 +55,7 @@ NSURL *resolveAliases(NSURL *url)
- (void)setURL:(NSURL *)u
{
if (![[NSFileManager defaultManager] fileExistsAtPath:[u path]])
{
ALog(@"File doesn't exist: %@", u);
}
url = u;
url = u;
display = [[NSFileManager defaultManager] displayNameAtPath:[u path]];