Skip to content

Commit 646c463

Browse files
committedJan 7, 2014
After using cleanLines.pl to clean out debugging lines automatically.
1 parent 94028c4 commit 646c463

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed
 

‎SSYFirefoxProfiler.m

-6
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,12 @@ + (NSString*)profilesIniContentsForHomePath:(NSString*)homePath
136136
error = SSYMakeError(529484, @"Attempted Cross-Home in Firefox extension") ;
137137
}
138138
else {
139-
/*SSYDBL*/ NSLog(@"Executing for NOT in Firefox") ;
140139
// OK, we're not in Firefox
141140
NSString* tempPath = [[NSFileManager defaultManager] temporaryFilePath] ;
142141
#if CPH_TASKMASTER_AVAILABLE
143-
/*SSYDBL*/ NSLog(@"Doing TaskMaster!!") ;
144142
ok = [[CPHTaskmaster sharedTaskmaster] copyPath:filepathProfilesIni
145143
toPath:tempPath
146144
error_p:&error] ;
147-
/*SSYDBL*/ NSLog(@"ok=%hhd, error : %@", ok, error) ;
148145
#else
149146
ok = [[NSFileManager defaultManager] copyItemAtPath:filepathProfilesIni
150147
toPath:tempPath
@@ -172,7 +169,6 @@ + (NSString*)profilesIniContentsForHomePath:(NSString*)homePath
172169

173170
end:
174171
if (error && error_p) {
175-
/*SSYDBL*/ NSLog(@"25398 Returning error %@", error) ;
176172
*error_p = error ;
177173
}
178174

@@ -322,7 +318,6 @@ + (NSString*)profileNameForPath:(NSString*)path
322318
goto end ;
323319
}
324320

325-
/*SSYDBL*/ NSLog(@"We have no error today") ;
326321
if (profilesIniContents) {
327322
NSScanner* scanner = [[NSScanner alloc] initWithString:profilesIniContents] ;
328323
[scanner setCharactersToBeSkipped:nil] ;
@@ -426,7 +421,6 @@ + (NSString*)profileNameForPath:(NSString*)path
426421
*error_p = error ;
427422
}
428423

429-
/*SSYDBL*/ NSLog(@"Returning profileName = %@", profileName) ;
430424
return profileName ;
431425
}
432426

‎SSYProcessTyper.m

-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ + (void)transformToType:(SSYProcessTyperType)type {
190190
// This section was code was moved here in BookMacster 1.20.1, and
191191
// further, qualified to only execute prior to Mac OS X 10.9.
192192
if (NSAppKitVersionNumber < 1200) {
193-
/*SSYDBL*/ NSLog(@"Activating another app (NSAppKitVersion = %f", NSAppKitVersionNumber) ;
194193
/*
195194
Prior to Mac OS X 10.9, transforming a process' type to
196195
LSIUElement, by itself, does not cause the main menu bar to assume
@@ -217,7 +216,6 @@ the order in which apps were launched (starting with the loginWindow and
217216
and tell it to "launch", some other, more appropriate app
218217
will get ownership of the menu bar. That's what we want. */
219218
NSString* otherAppName = [otherApp localizedName] ;
220-
/*SSYDBL*/ NSLog(@"Activating %@", otherAppName) ;
221219
BOOL didActivateSomeOtherApp = [[NSWorkspace sharedWorkspace] launchApplication:otherAppName] ;
222220
if (didActivateSomeOtherApp) {
223221
break ;

0 commit comments

Comments
 (0)