diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CustomQuery.m | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index b26cf828..4a0d343a 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -265,7 +265,6 @@ if ( sender == previousHistoryMenuItem ) { NSInteger numberOfHistoryItems = [[SPQueryController sharedQueryController] numberOfHistoryItemsForFileURL:[tableDocumentInstance fileURL]]; currentHistoryOffsetIndex++; - NSLog(@"%ld + %ld", numberOfHistoryItems, currentHistoryOffsetIndex); if ( numberOfHistoryItems > 0 && currentHistoryOffsetIndex < numberOfHistoryItems && currentHistoryOffsetIndex >= 0) { historyItemWasJustInserted = YES; // if(![textView selectedRange].length) @@ -285,7 +284,6 @@ if ( sender == nextHistoryMenuItem ) { NSInteger numberOfHistoryItems = [[SPQueryController sharedQueryController] numberOfHistoryItemsForFileURL:[tableDocumentInstance fileURL]]; currentHistoryOffsetIndex--; - NSLog(@"%ld - %ld", numberOfHistoryItems, currentHistoryOffsetIndex); if ( numberOfHistoryItems > 0 && currentHistoryOffsetIndex < numberOfHistoryItems && currentHistoryOffsetIndex >= 0) { historyItemWasJustInserted = YES; // if(![textView selectedRange].length) |