aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPHTMLExporter.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-05-27 22:35:43 +0000
committerstuconnolly <stuart02@gmail.com>2010-05-27 22:35:43 +0000
commit9eb3012a29eb9adb658159c984716971f0141446 (patch)
tree2a8139d9ace0c0193a0508e85316b76a0e362bcc /Source/SPHTMLExporter.m
parent417b151533528e0b43c3cdea72e89bec6207b0f7 (diff)
downloadsequelpro-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.m10
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