Skip to content

Commit

Permalink
Cleanup commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed May 11, 2024
1 parent da0c96d commit cbc748e
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions XCode/PBXResourcesBuildPhase.m
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit cbc748e

Please sign in to comment.