aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPContentFilterManager.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-22 17:14:03 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-22 17:14:03 +0000
commit9ab31cc5b60bf0e4519c989a3e9d213da50f888d (patch)
tree5e2967e092096dd830351a222cfe65d008d41fbd /Source/SPContentFilterManager.m
parente2cc9e1953a142f182714fb02d7eca028398e368 (diff)
downloadsequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.tar.gz
sequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.tar.bz2
sequelpro-9ab31cc5b60bf0e4519c989a3e9d213da50f888d.zip
Remove useless init and dealloc method comments and perform general tidy up.
Diffstat (limited to 'Source/SPContentFilterManager.m')
-rw-r--r--Source/SPContentFilterManager.m16
1 files changed, 9 insertions, 7 deletions
diff --git a/Source/SPContentFilterManager.m b/Source/SPContentFilterManager.m
index a0755b92..064f848d 100644
--- a/Source/SPContentFilterManager.m
+++ b/Source/SPContentFilterManager.m
@@ -75,13 +75,6 @@
return self;
}
-- (void)dealloc
-{
- [contentFilters release];
-
- [super dealloc];
-}
-
/**
* Upon awakening bind the query text view's background colour.
*/
@@ -951,4 +944,13 @@
#endif
}
+#pragma mark -
+
+- (void)dealloc
+{
+ [contentFilters release];
+
+ [super dealloc];
+}
+
@end