From cbc748e4f90157dd6ef3b21bf463344fc181b01a Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sat, 11 May 2024 18:06:20 -0400 Subject: [PATCH] Cleanup commented out code --- XCode/PBXResourcesBuildPhase.m | 43 ---------------------------------- 1 file changed, 43 deletions(-) diff --git a/XCode/PBXResourcesBuildPhase.m b/XCode/PBXResourcesBuildPhase.m index ad281b1..2a4dffb 100644 --- a/XCode/PBXResourcesBuildPhase.m +++ b/XCode/PBXResourcesBuildPhase.m @@ -340,49 +340,6 @@ - (BOOL) build [self processInfoPlistInput: infoPlist output: outputPlist]; - /* - NSString *baseLproj = [resourcesDir - stringByAppendingPathComponent: @"Base.lproj"]; - NSArray *farr = [mgr directoryContentsAtPath: baseLproj]; - NSDebugLog(@"files in dir %@", farr); - - NSEnumerator *fen = [farr objectEnumerator]; - NSString *f = nil; - - while ((f = [fen nextObject]) != nil) - { - NSString *src = [baseLproj stringByAppendingPathComponent: f]; - NSString *dst = [resourcesDir stringByAppendingPathComponent: f]; - NSError *ferror = nil; - [mgr moveItemAtPath: src - toPath: dst - error: &ferror]; - if (ferror != nil) - { - NSLog(@"** Error while copying resource: %@", ferror); - } - } - */ - - /* - if (den !=nil) - { - NSString *fn = nil; - - while ((fn = [den nextObject]) != nil) - { - [mgr moveItemAtPath: baseLproj - toPath: engLproj - error: NULL]; - if (error != nil) - { - NSLog(@"** Error while copying resource: %@", error); - } - } - } - */ - - xcputs("=== Resources Build Phase Completed"); fflush(stdout);