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/SPDocumentController.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/SPDocumentController.m')
-rw-r--r-- | Source/SPDocumentController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDocumentController.m b/Source/SPDocumentController.m index f843155a..afc0e9a5 100644 --- a/Source/SPDocumentController.m +++ b/Source/SPDocumentController.m @@ -34,13 +34,11 @@ @implementation SPDocumentController - /** * This is an empty, dummy implementation; this allows Sequel Pro to behave * as if it were a document-based application. */ - /** * Add a dummy implementation of readFromData:ofType:error:, which appears to * be called by the OS in certain situations despite non-document use. @@ -51,6 +49,7 @@ if (outError) { *outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL]; } + return YES; } @@ -62,6 +61,7 @@ if (outError) { *outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL]; } + return nil; } |