aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableContent.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-09-01 00:23:01 +0000
committerrowanbeentje <rowan@beent.je>2009-09-01 00:23:01 +0000
commitb5ccc9bd71123ea6a45100c0353c40e42e489f3a (patch)
treef3fbc1e05f6e6e65031ed9e2970255127ff83687 /Source/TableContent.m
parentb2d168940430f6ab55d0aa635d38bcae1b64fcdb (diff)
downloadsequelpro-b5ccc9bd71123ea6a45100c0353c40e42e489f3a.tar.gz
sequelpro-b5ccc9bd71123ea6a45100c0353c40e42e489f3a.tar.bz2
sequelpro-b5ccc9bd71123ea6a45100c0353c40e42e489f3a.zip
- Remove an NSLog I accidentally left in (and another found via a search)
- Improve SQL parser streaming improvements for significant speedups and some very important bugfixes
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r--Source/TableContent.m1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m
index c9d69b31..f796eca6 100644
--- a/Source/TableContent.m
+++ b/Source/TableContent.m
@@ -511,7 +511,6 @@
// If we are using the BETWEEN operator and either of the argument fields are empty return nil.
if ([[[compareField selectedItem] title] isEqualToString:@"BETWEEN"]) {
if (([firstBetweenArgument length] == 0) || ([secondBetweenArgument length] == 0)) {
- NSLog(@"reached");
return nil;
}
}