From 9eb3012a29eb9adb658159c984716971f0141446 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Thu, 27 May 2010 22:35:43 +0000 Subject: Remove unsed try/catch exception blocks in all data exporters. --- Source/SPHTMLExporter.m | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'Source/SPHTMLExporter.m') 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 -- cgit v1.2.3