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/SPPDFExporter.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/SPPDFExporter.m')
-rw-r--r-- | Source/SPPDFExporter.m | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Source/SPPDFExporter.m b/Source/SPPDFExporter.m index a850e2bf..725b4173 100644 --- a/Source/SPPDFExporter.m +++ b/Source/SPPDFExporter.m @@ -50,12 +50,9 @@ */ - (void)main { - @try { - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - - [pool release]; - } - @catch (NSException *e) { } + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + + [pool release]; } @end |