diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-27 22:35:43 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-27 22:35:43 +0000 |
commit | 9eb3012a29eb9adb658159c984716971f0141446 (patch) | |
tree | 2a8139d9ace0c0193a0508e85316b76a0e362bcc /Source/SPHTMLExporter.m | |
parent | 417b151533528e0b43c3cdea72e89bec6207b0f7 (diff) | |
download | sequelpro-9eb3012a29eb9adb658159c984716971f0141446.tar.gz sequelpro-9eb3012a29eb9adb658159c984716971f0141446.tar.bz2 sequelpro-9eb3012a29eb9adb658159c984716971f0141446.zip |
Remove unsed try/catch exception blocks in all data exporters.
Diffstat (limited to 'Source/SPHTMLExporter.m')
-rw-r--r-- | Source/SPHTMLExporter.m | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Source/SPHTMLExporter.m b/Source/SPHTMLExporter.m index 45f41c54..dbf649dc 100644 --- a/Source/SPHTMLExporter.m +++ b/Source/SPHTMLExporter.m @@ -50,13 +50,9 @@ */ - (void)main { - @try { - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - - [pool release]; - - } - @catch (NSException *e) { } + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + + [pool release]; } @end |