diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-22 17:14:03 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-22 17:14:03 +0000 |
commit | 9ab31cc5b60bf0e4519c989a3e9d213da50f888d (patch) | |
tree | 5e2967e092096dd830351a222cfe65d008d41fbd /Source/SPTableData.m | |
parent | e2cc9e1953a142f182714fb02d7eca028398e368 (diff) | |
download | sequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.tar.gz sequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.tar.bz2 sequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.zip |
Remove useless init and dealloc method comments and perform general tidy up.
Diffstat (limited to 'Source/SPTableData.m')
-rw-r--r-- | Source/SPTableData.m | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Source/SPTableData.m b/Source/SPTableData.m index ad3416aa..04aaaed6 100644 --- a/Source/SPTableData.m +++ b/Source/SPTableData.m @@ -51,10 +51,7 @@ @synthesize tableHasAutoIncrementField; -/** - * Init class. - */ -- (id) init +- (id)init { if ((self = [super init])) { columns = [[NSMutableArray alloc] init]; @@ -81,7 +78,7 @@ * * @param theConnection The used connection for the SPDatabaseDocument */ -- (void) setConnection:(SPMySQLConnection *)theConnection +- (void)setConnection:(SPMySQLConnection *)theConnection { mySQLConnection = theConnection; [mySQLConnection retain]; @@ -90,9 +87,8 @@ /** * Retrieve the encoding for the current table, using or refreshing the cache as appropriate. */ -- (NSString *) tableEncoding +- (NSString *)tableEncoding { - // If processing is already in action, wait for it to complete [self _loopWhileWorking]; |