aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TablesList.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-05-18 10:05:56 +0000
committerBibiko <bibiko@eva.mpg.de>2009-05-18 10:05:56 +0000
commit37315ad77d716b13d4387262a944bb6b03ad0d07 (patch)
treef36b42b334ca247f5dc9defd17dcb07417ef37c0 /Source/TablesList.m
parentbdc31b36fb72f2f6b9eaf13ea3e6df10b3a1a530 (diff)
downloadsequelpro-37315ad77d716b13d4387262a944bb6b03ad0d07.tar.gz
sequelpro-37315ad77d716b13d4387262a944bb6b03ad0d07.tar.bz2
sequelpro-37315ad77d716b13d4387262a944bb6b03ad0d07.zip
• removed NSLog for logging the mysql serverMajorVersion etc.; it causes a crash if one changes the database
Diffstat (limited to 'Source/TablesList.m')
-rw-r--r--Source/TablesList.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/TablesList.m b/Source/TablesList.m
index 4c90df4b..ace79005 100644
--- a/Source/TablesList.m
+++ b/Source/TablesList.m
@@ -49,9 +49,7 @@
NSString *selectedTable = nil;
NSInteger selectedRowIndex;
- NSLog( @"%d %d %d", [mySQLConnection serverMajorVersion], [mySQLConnection serverMinorVersion], [mySQLConnection serverReleaseVersion] );
-
- selectedRowIndex = [tablesListView selectedRow];
+ selectedRowIndex = [tablesListView selectedRow];
if(selectedRowIndex > 0 && [tables count]){
selectedTable = [NSString stringWithString:[tables objectAtIndex:selectedRowIndex]];
}