diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-05-18 10:05:56 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-05-18 10:05:56 +0000 |
commit | 37315ad77d716b13d4387262a944bb6b03ad0d07 (patch) | |
tree | f36b42b334ca247f5dc9defd17dcb07417ef37c0 | |
parent | bdc31b36fb72f2f6b9eaf13ea3e6df10b3a1a530 (diff) | |
download | sequelpro-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
-rw-r--r-- | Source/TablesList.m | 4 |
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]]; } |