diff options
author | rowanbeentje <rowan@beent.je> | 2009-09-01 00:23:01 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-09-01 00:23:01 +0000 |
commit | b5ccc9bd71123ea6a45100c0353c40e42e489f3a (patch) | |
tree | f3fbc1e05f6e6e65031ed9e2970255127ff83687 /Source/TableContent.m | |
parent | b2d168940430f6ab55d0aa635d38bcae1b64fcdb (diff) | |
download | sequelpro-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.m | 1 |
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; } } |