aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPCSVExporter.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-10-06 16:13:05 +0000
committerstuconnolly <stuart02@gmail.com>2009-10-06 16:13:05 +0000
commit23c8a125dca16dd846a25d7ab30266e52f8048f2 (patch)
tree0547a7225b6a8e794e73392756679a266e4d40f9 /Source/SPCSVExporter.m
parent3f2838787602f50176a0ea4e15c0f69cd403920c (diff)
downloadsequelpro-23c8a125dca16dd846a25d7ab30266e52f8048f2.tar.gz
sequelpro-23c8a125dca16dd846a25d7ab30266e52f8048f2.tar.bz2
sequelpro-23c8a125dca16dd846a25d7ab30266e52f8048f2.zip
More export redesign work.
Diffstat (limited to 'Source/SPCSVExporter.m')
-rw-r--r--Source/SPCSVExporter.m10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/SPCSVExporter.m b/Source/SPCSVExporter.m
index 82f43a79..3464b72d 100644
--- a/Source/SPCSVExporter.m
+++ b/Source/SPCSVExporter.m
@@ -83,11 +83,6 @@
// Check that we have at least some data to export
if ((![self csvDataArray]) && (![self csvDataResult])) return;
- // Tell the delegate that we are starting the export process
- if (delegate && [delegate respondsToSelector:@selector(exportProcessDidStart:)]) {
- [delegate exportProcessDidStart:self];
- }
-
// Mark the process as running
[self setExportProcessIsRunning:YES];
@@ -277,11 +272,6 @@
// Mark the process as not running
[self setExportProcessIsRunning:NO];
- // Tell the delegate that the export process has ended
- if (delegate && [delegate respondsToSelector:@selector(exportProcessDidEnd:)]) {
- [delegate exportProcessDidEnd:self];
- }
-
// Pass the resulting CSV data back to the delegate by calling the specified didEndSelector
[[self delegate] performSelectorOnMainThread:[self didEndSelector] withObject:csvData waitUntilDone:YES];