Skip to content

Commit

Permalink
Removed dangling NSLogs
Browse files Browse the repository at this point in the history
  • Loading branch information
pjrobertson committed Apr 23, 2011
1 parent a72f7b7 commit fe698ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions com.apple.Mail/QSAppleMailPlugIn_Source.m
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ - (BOOL)objectHasChildren:(QSObject *)object{
if([[object primaryType] isEqualToString:kQSAppleMailMailboxType])
{
NSFileManager *fm = [NSFileManager defaultManager];
NSLog(@"file path: %@", [NSString stringWithFormat:@"%@/%@.%@/Messages",
/* NSLog(@"file path: %@", [NSString stringWithFormat:@"%@/%@.%@/Messages",
[object objectForMeta:@"accountPath"],
[object objectForMeta:@"mailboxName"],
[object objectForMeta:@"mailboxType"]]);
[object objectForMeta:@"mailboxType"]]); */
if([fm fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.%@/Messages",
[object objectForMeta:@"accountPath"],
[object objectForMeta:@"mailboxName"],
Expand Down Expand Up @@ -310,7 +310,7 @@ - (NSArray *)mailsForMailbox:(QSObject *)object {
mailboxName,
mailboxType,
[rs stringForColumn:@"message_id"]];
NSLog(@"MailPath: %@",mailPath);

newObject=[QSObject objectWithName:subject];
[newObject setObject:subject forType:kQSAppleMailMessageType];
[newObject setDetails:sender];
Expand Down

0 comments on commit fe698ff

Please sign in to comment.