adium 4791:017a1f6c8761: Remove some no-longer-needed deallocs.

commits at adium.im commits at adium.im
Sun Apr 29 19:55:21 UTC 2012


details:	http://hg.adium.im/adium/rev/017a1f6c8761
revision:	4791:017a1f6c8761
branch:		ARC
author:		Frank Dowsett <wixardy at adium.im>
date:		Sun Apr 29 15:55:07 2012 -0400

Remove some no-longer-needed deallocs.

diffs (864 lines):

diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/AIUtilities Framework/Source/AIColoredBoxView.h
--- a/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.h	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.h	Sun Apr 29 15:55:07 2012 -0400
@@ -21,7 +21,6 @@
  * View which draws, simply filling its bounds with a particular color.
  */
 @interface AIColoredBoxView : NSView {
-    NSColor 	*__weak color;
 }
 
 /*!
@@ -29,6 +28,6 @@
  *
  * The <tt>NSColor</tt> to draw in the view
  */ 
- at property (weak, readwrite, nonatomic) NSColor *color;
+ at property (readwrite, nonatomic) NSColor *color;
 
 @end
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m
--- a/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m	Sun Apr 29 15:55:07 2012 -0400
@@ -45,9 +45,4 @@
     [super drawRect:rect];
 }
 
-- (void)dealloc
-{
-    self.color = nil;
-}
-
 @end
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/AIUtilities Framework/Source/AIImageTextCell.m
--- a/Frameworks/AIUtilities Framework/Source/AIImageTextCell.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/AIUtilities Framework/Source/AIImageTextCell.m	Sun Apr 29 15:55:07 2012 -0400
@@ -46,12 +46,6 @@
 	return self;
 }
 
-//Dealloc
-- (void)dealloc
-{
-	font = nil;
-}
-
 //Copy
 - (id)copyWithZone:(NSZone *)zone
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/AIUtilities Framework/Source/AIProgressDataUploader.m
--- a/Frameworks/AIUtilities Framework/Source/AIProgressDataUploader.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/AIUtilities Framework/Source/AIProgressDataUploader.m	Sun Apr 29 15:55:07 2012 -0400
@@ -98,14 +98,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	url = nil;
-	headers = nil;
-	uploadData = nil;
-	returnedData = nil;
-}
-
 /*!
  * @brief Begin the upload.
  *
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/AIUtilities Framework/Source/JVMarkedScroller.m
--- a/Frameworks/AIUtilities Framework/Source/JVMarkedScroller.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/AIUtilities Framework/Source/JVMarkedScroller.m	Sun Apr 29 15:55:07 2012 -0400
@@ -41,11 +41,6 @@
 	return self;
 }
 
-- (void) dealloc {
-	_marks = nil;
-	_shades = nil;
-}
-
 #pragma mark -
 
 + (BOOL)isCompatibleWithOverlayScrollers {
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m
--- a/Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m	Sun Apr 29 15:55:07 2012 -0400
@@ -45,12 +45,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	trackingDictPersonToTagNumber = nil;
-	trackingDictTagNumberToPerson = nil;
-}
-
 /*!
  * @brief AIUserIcons wants this source to update its user icon for an object
  *
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIChat.m
--- a/Frameworks/Adium Framework/Source/AIChat.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIChat.m	Sun Apr 29 15:55:07 2012 -0400
@@ -105,12 +105,6 @@
 	AILog(@"[%@ dealloc]",self);
 
 	[self removeAllParticipatingContactsSilently];
-	uniqueChatID = nil;
-	
-	tabStateIcon = nil;
-    chatCreationInfo = nil;
-    enteredTextTimer = nil;
-    securityDetails = nil;
 }
 
 //Big image
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIContactHidingController.m
--- a/Frameworks/Adium Framework/Source/AIContactHidingController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIContactHidingController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -56,14 +56,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	matchedContacts = nil;
-	filterPredicate = nil;
-	filterPredicateTemplate = nil;
-	hideAccounts = nil;
-}
-
 - (void)preferencesChangedForGroup:(NSString *)group
 							   key:(NSString *)key
 							object:(AIListObject *)object
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIContactMenu.m
--- a/Frameworks/Adium Framework/Source/AIContactMenu.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIContactMenu.m	Sun Apr 29 15:55:07 2012 -0400
@@ -75,9 +75,6 @@
 {
 	[[AIContactObserverManager sharedManager] unregisterListObjectObserver:self];
 	[[NSNotificationCenter defaultCenter] removeObserver:self];
-
-	containingObject = nil;
-	delegate = nil;
 }
 
 /*!
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIContactObserverManager.m
--- a/Frameworks/Adium Framework/Source/AIContactObserverManager.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIContactObserverManager.m	Sun Apr 29 15:55:07 2012 -0400
@@ -69,10 +69,6 @@
 	
 	return self;
 }
-- (void)dealloc
-{
-	contactObservers = nil;
-}
 
 //Status and Display updates -------------------------------------------------------------------------------------------
 #pragma mark Status and Display updates
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIContentObject.m
--- a/Frameworks/Adium Framework/Source/AIContentObject.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIContentObject.m	Sun Apr 29 15:55:07 2012 -0400
@@ -63,12 +63,6 @@
     return self;
 }
 
-- (void)dealloc
-{
-	chat = nil;
-	customDisplayClasses = nil;
-}
-
 //Content Identifier
 - (NSString *)type
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AICorePluginLoader.m
--- a/Frameworks/Adium Framework/Source/AICorePluginLoader.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AICorePluginLoader.m	Sun Apr 29 15:55:07 2012 -0400
@@ -127,11 +127,6 @@
     }
 }
 
-- (void)dealloc
-{
-	pluginArray = nil;
-}
-
 + (BOOL)pluginIsBlacklisted:(NSBundle *)plugin
 {
 	// Only one right now: the Skype plugin that works with 1.4 crashes in 1.5 (see #15590).
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIImageTextCellView.m
--- a/Frameworks/Adium Framework/Source/AIImageTextCellView.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIImageTextCellView.m	Sun Apr 29 15:55:07 2012 -0400
@@ -47,11 +47,6 @@
     [cell setFont:[NSFont systemFontOfSize:12]];
 }
 
-- (void)dealloc
-{
-	cell = nil;
-}
-
 //NSCell expects to draw into a flipped view
 - (BOOL)isFlipped
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIListContact.m
--- a/Frameworks/Adium Framework/Source/AIListContact.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIListContact.m	Sun Apr 29 15:55:07 2012 -0400
@@ -74,23 +74,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	m_remoteGroupNames = nil;
-	internalUniqueObjectID = nil;
-	
-	textColor = nil;
-	invertedTextColor = nil;
-	labelColor = nil;
-	imageOpacity = nil;
-	ABUniqueID = nil;
-	textProfile = nil;
-	idleSince = nil;
-	idleReadable = nil;
-	serverDisplayName = nil;
-	formattedUID = nil;
-}
-
 //The account that owns this contact
 @synthesize account;
 
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIListContactBubbleCell.m
--- a/Frameworks/Adium Framework/Source/AIListContactBubbleCell.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIListContactBubbleCell.m	Sun Apr 29 15:55:07 2012 -0400
@@ -50,11 +50,6 @@
 	return newCell;
 }
 
-- (void)dealloc
-{
-	lastBackgroundBezierPath = nil;
-}
-
 //Give ourselves extra padding to compensate for the rounded bubble
 - (CGFloat)leftPadding{
 	return [super leftPadding] + EDGE_INDENT;
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIListContactMockieCell.m
--- a/Frameworks/Adium Framework/Source/AIListContactMockieCell.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIListContactMockieCell.m	Sun Apr 29 15:55:07 2012 -0400
@@ -42,11 +42,6 @@
 	return newCell;
 }
 
-- (void)dealloc
-{
-	lastBackgroundBezierPath = nil;
-}
-
 //Draw the background of our cell
 - (NSBezierPath *)bezierPathForDrawingInRect:(NSRect)rect
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIListGroup.m
--- a/Frameworks/Adium Framework/Source/AIListGroup.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIListGroup.m	Sun Apr 29 15:55:07 2012 -0400
@@ -51,12 +51,8 @@
 
 - (void)dealloc
 {
-	_visibleObjects = nil;
-	_containedObjects = nil;
 	[[AIContactObserverManager sharedManager] unregisterListObjectObserver:self];
 	[[NSNotificationCenter defaultCenter] removeObserver:self];
-	
-	countText = nil;
 }
 
 /* An object ID generated by Adium that is shared by all objects which are, to most intents and purposes, identical to
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIListObject.m
--- a/Frameworks/Adium Framework/Source/AIListObject.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIListObject.m	Sun Apr 29 15:55:07 2012 -0400
@@ -68,23 +68,6 @@
 	return self;
 }
 
-/*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	internalObjectID = nil;
-	m_groups = nil;
-	
-	listObjectStatusMessage = nil;
-	listStateIcon = nil;
-	listStatusIcon = nil;
-	listObjectStatusType = nil;
-	extendedStatus = nil;
-	listObjectStatusName = nil;
-	webKitUserIconPath = nil;
-}
-
 - (void)setupObservedValues
 {
 	[self setValue:[self preferenceForKey:@"Visible" group:PREF_GROUP_ALWAYS_VISIBLE]
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AIMetaContact.m
--- a/Frameworks/Adium Framework/Source/AIMetaContact.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AIMetaContact.m	Sun Apr 29 15:55:07 2012 -0400
@@ -74,15 +74,10 @@
 	return self;
 }
 
-//dealloc
 - (void)dealloc
 {
 	//I've seen a crashlog with a delayed -updateDisplayName causing crashes due to a freed AIMetaContact, so let's cancel any pending updates
 	[[NSRunLoop currentRunLoop] cancelPerformSelectorsWithTarget:self];
-	
-	_containedObjects = nil;
-	_listContacts = nil;
-	_listContactsIncludingOfflineAccounts = nil;
 }
 
 @synthesize objectID;
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/AISortController.m
--- a/Frameworks/Adium Framework/Source/AISortController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/AISortController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -85,14 +85,6 @@
 }
 
 /*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	configureView = nil;
-}
-
-/*!
  * @brief Configure our customization view
  */
 - (NSView *)configureView
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/ESContactAlertsViewController.m
--- a/Frameworks/Adium Framework/Source/ESContactAlertsViewController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/ESContactAlertsViewController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -114,17 +114,6 @@
 
 	[outlineView_summary setDelegate:nil];
 	[outlineView_summary setDataSource:nil];
-
-	editingPanel = nil;
-	contactAlertsEvents = nil;
-	contactAlertsActions = nil;
-	listObject = nil;
-	expandStateDict = nil;
-	requiredHeightDict = nil;
-
-	// I don't think this needs to be released, because the contact-specific
-	// alerts view does not appear to get released. But anyway...
-	targetEventID = nil;
 }
 
 - (void)setDelegate:(id)inDelegate
diff -r 34872b5f5a2c -r 017a1f6c8761 Frameworks/Adium Framework/Source/JVFontPreviewField.m
--- a/Frameworks/Adium Framework/Source/JVFontPreviewField.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Frameworks/Adium Framework/Source/JVFontPreviewField.m	Sun Apr 29 15:55:07 2012 -0400
@@ -46,10 +46,6 @@
 	}
 }
 
-- (void) dealloc {
-	_actualFont = nil;
-}
-
 - (void) changeFont:(id) sender {
 	NSFont *font = [sender convertFont:[self font]];
 	NSObject <NSObject,JVFontPreviewFieldDelegate> *__delegate = (id <NSObject,JVFontPreviewFieldDelegate>)self.delegate;
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Dock Icon Badging/AIDockNameOverlay.m
--- a/Plugins/Dock Icon Badging/AIDockNameOverlay.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Dock Icon Badging/AIDockNameOverlay.m	Sun Apr 29 15:55:07 2012 -0400
@@ -53,16 +53,6 @@
 	}
 }
 
-- (void)flushPreferenceColorCache
-{
-	signedOffColor = nil;
-	signedOnColor = nil;
-	unviewedContentColor = nil;
-	backSignedOffColor = nil;
-	backSignedOnColor = nil;
-	backUnviewedContentColor = nil;
-}
-
 - (void)uninstallPlugin
 {
 	[adium.preferenceController unregisterPreferenceObserver:self];
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Dual Window Interface/AIMessageTabViewItem.m
--- a/Plugins/Dual Window Interface/AIMessageTabViewItem.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Dual Window Interface/AIMessageTabViewItem.m	Sun Apr 29 15:55:07 2012 -0400
@@ -103,12 +103,7 @@
 
 - (void)dealloc
 {
-	AILogWithSignature(@"");
-	
     [[NSNotificationCenter defaultCenter] removeObserver:self];
-
-	tabViewItemImage = nil;
-    messageViewController = nil;
 }
 
 //Access to our message view controller
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Image Uploading Plugin/AIGenericMultipartImageUploader.m
--- a/Plugins/Image Uploading Plugin/AIGenericMultipartImageUploader.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Image Uploading Plugin/AIGenericMultipartImageUploader.m	Sun Apr 29 15:55:07 2012 -0400
@@ -91,13 +91,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	dataUploader = nil;
-	image = nil;
-}
-
-
 #pragma mark Data uploader delegate
 - (void)updateUploadProgress:(NSUInteger)uploaded total:(NSUInteger)total context:(id)context
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Image Uploading Plugin/AIImageShackImageUploader.m
--- a/Plugins/Image Uploading Plugin/AIImageShackImageUploader.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Image Uploading Plugin/AIImageShackImageUploader.m	Sun Apr 29 15:55:07 2012 -0400
@@ -38,13 +38,6 @@
 	return 2500000;
 }
 
-- (void)dealloc
-{
-	resultData = nil;
-	links = nil;
-	responseParser = nil;
-}
-
 #pragma mark Response parsing
 - (void)parseResponse:(NSData *)data
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Image Uploading Plugin/AIImgurImageUploader.m
--- a/Plugins/Image Uploading Plugin/AIImgurImageUploader.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Image Uploading Plugin/AIImgurImageUploader.m	Sun Apr 29 15:55:07 2012 -0400
@@ -43,13 +43,6 @@
 	return 2500000;
 }
 
-- (void)dealloc
-{
-	resultData = nil;
-	response = nil;
-	responseParser = nil;
-}
-
 #pragma mark Response parsing
 - (void)parseResponse:(NSData *)data
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Purple Service/ESJabberService.m
--- a/Plugins/Purple Service/ESJabberService.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Purple Service/ESJabberService.m	Sun Apr 29 15:55:07 2012 -0400
@@ -47,10 +47,6 @@
 - (void)dealloc
 {
 	[adium.interfaceController unregisterContactListTooltipEntry:moodTooltip secondaryEntry:YES];
-	moodTooltip = nil;
-	charactersInNode = nil;
-	charactersInDomain = nil;
-	charactersInResource = nil;
 }
 
 //Account Creation
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Purple Service/ESPurpleRequestActionController.m
--- a/Plugins/Purple Service/ESPurpleRequestActionController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Purple Service/ESPurpleRequestActionController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -111,11 +111,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	requestController = nil;
-}
-
 - (BOOL)textAndButtonsWindowDidEnd:(NSWindow *)window returnCode:(AITextAndButtonsReturnCode)returnCode suppression:(BOOL)suppression userInfo:(id)userInfo
 {
 	GCallback		*theCallBacks;
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Purple Service/ESPurpleRequestWindowController.m
--- a/Plugins/Purple Service/ESPurpleRequestWindowController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Purple Service/ESPurpleRequestWindowController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -190,13 +190,6 @@
 	}
 }
 
-- (void)dealloc
-{
-	okayCallbackValue = nil;
-	cancelCallbackValue = nil;
-	userDataValue = nil;
-}
-
 - (void)doWindowWillClose
 {
 	if (cancelCallbackValue) {
diff -r 34872b5f5a2c -r 017a1f6c8761 Plugins/Twitter Plugin/MGTwitterEngine/MGTwitterXMLParser.m
--- a/Plugins/Twitter Plugin/MGTwitterEngine/MGTwitterXMLParser.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Plugins/Twitter Plugin/MGTwitterEngine/MGTwitterXMLParser.m	Sun Apr 29 15:55:07 2012 -0400
@@ -54,13 +54,6 @@
     return self;
 }
 
-
-- (void)dealloc
-{
-    delegate = nil;
-}
-
-
 #pragma mark NSXMLParser delegate methods
 
 
@@ -77,21 +70,6 @@
                        withParsedObjects:parsedObjects];
 }
 
-
-- (void)parser:(NSXMLParser *)theParser didStartElement:(NSString *)elementName 
-  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName 
-    attributes:(NSDictionary *)attributeDict
-{
-    //NSLog(@"Started element: %@ (%@)", elementName, attributeDict);
-}
-
-
-- (void)parser:(NSXMLParser *)theParser foundCharacters:(NSString *)characters
-{
-    //NSLog(@"Found characters: %@", characters);
-}
-
-
 - (void)parser:(NSXMLParser *)theParser didEndElement:(NSString *)elementName 
   namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
 {
@@ -113,20 +91,6 @@
     }
 }
 
-
-- (void)parser:(NSXMLParser *)theParser foundAttributeDeclarationWithName:(NSString *)attributeName 
-    forElement:(NSString *)elementName type:(NSString *)type defaultValue:(NSString *)defaultValue
-{
-    //NSLog(@"Found attribute: %@ (%@) [%@] {%@}", attributeName, elementName, type, defaultValue);
-}
-
-
-- (void)parser:(NSXMLParser *)theParser foundIgnorableWhitespace:(NSString *)whitespaceString
-{
-    //NSLog(@"Found ignorable whitespace: %@", whitespaceString);
-}
-
-
 - (void)parser:(NSXMLParser *)theParser parseErrorOccurred:(NSError *)parseError
 {
     //NSLog(@"Parsing error occurred: %@", parseError);
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIAddressBookInspectorPane.m
--- a/Source/AIAddressBookInspectorPane.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIAddressBookInspectorPane.m	Sun Apr 29 15:55:07 2012 -0400
@@ -44,12 +44,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	inspectorContentView = nil;
-	addressBookPanel = nil;
-}
-
 -(NSString *)nibName
 {
 	return ADDRESS_BOOK_NIB_NAME;
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIContactIdlePlugin.m
--- a/Source/AIContactIdlePlugin.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIContactIdlePlugin.m	Sun Apr 29 15:55:07 2012 -0400
@@ -60,14 +60,6 @@
 }
 
 /*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	idleObjectArray = nil;
-}
-
-/*!
  * @brief Update list object
  *
  * When the idleSince property changes, we start or stop tracking the object as appropriate.
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIContactListImagePicker.m
--- a/Source/AIContactListImagePicker.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIContactListImagePicker.m	Sun Apr 29 15:55:07 2012 -0400
@@ -80,8 +80,6 @@
 		[self removeTrackingRect:trackingTag];
 		trackingTag = -1;
 	}
-	
-	imageMenu = nil;
 }
 
 #pragma mark Drawing
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIContactSortSelectionPlugin.m
--- a/Source/AIContactSortSelectionPlugin.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIContactSortSelectionPlugin.m	Sun Apr 29 15:55:07 2012 -0400
@@ -70,14 +70,6 @@
 }
 
 /*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	menuItem_configureSort = nil;
-}
-
-/*!
  * @brief Our available sort controllers changed
  */
 - (void)adiumFinishedLaunching:(NSNotification *)notification
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIContentController.m
--- a/Source/AIContentController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIContentController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -113,17 +113,6 @@
 }
 
 /*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	objectsBeingReceived = nil;
-	adiumTyping = nil;
-	adiumFormatting = nil;
-	adiumContentFiltering = nil;
-}
-
-/*!
  * @brief Set the encryptor
  *
  * NB: We must _always_ have an encryptor.
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIEditAccountWindowController.m
--- a/Source/AIEditAccountWindowController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIEditAccountWindowController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -80,14 +80,6 @@
 }
 
 /*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	userIconData = nil;
-}
-
-/*!
  * @brief Setup the window before it is displayed
  */
 - (void)windowDidLoad
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIListObjectContentsPlugin.m
--- a/Source/AIListObjectContentsPlugin.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIListObjectContentsPlugin.m	Sun Apr 29 15:55:07 2012 -0400
@@ -71,11 +71,6 @@
 									 object:nil];
 }
 
-- (void)dealloc
-{
-	contextualMenuItem = nil;
-}
-
 /*!
  * @brief Tooltip label
  *
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AILogViewerWindowController.m
--- a/Source/AILogViewerWindowController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AILogViewerWindowController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -259,26 +259,6 @@
 	return self;
 }
 
-//dealloc
-- (void)dealloc
-{
-	filterDate = nil;
-	currentSearchLock = nil;
-
-	logFromGroupDict = nil;
-	logToGroupDict = nil;
-
-	horizontalRule = nil;
-
-	adiumIcon = nil;
-	adiumIconHighlighted = nil;
-
-	//We loaded	view_DatePicker from a nib manually, so we must release it
-	view_DatePicker = nil;
-
-	undoManager = nil;
-}
-
 //Init our log filtering tree
 - (void)initLogFiltering
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AILoginWindowController.m
--- a/Source/AILoginWindowController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AILoginWindowController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -66,13 +66,6 @@
 	return self;
 }
 
-// deallocate the login controller
-- (void)dealloc
-{
-    owner = nil;
-    userArray = nil;
-}
-
 // TableView Delegate methods - Return the number of items in the table
 - (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
 {
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AIPreferenceController.m
--- a/Source/AIPreferenceController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AIPreferenceController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -147,21 +147,8 @@
 - (void)controllerWillClose
 {
 	[AIPreferenceContainer preferenceControllerWillClose];
-} 
-
-/*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-    delayedNotificationGroups = nil;
-    paneArray = nil;
-    prefCache = nil;
-	objectPrefCache = nil;
 }
 
-
-
 //Preference Window ----------------------------------------------------------------------------------------------------
 #pragma mark Preference Window
 /*!
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AdiumFormatting.m
--- a/Source/AdiumFormatting.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AdiumFormatting.m	Sun Apr 29 15:55:07 2012 -0400
@@ -68,7 +68,6 @@
 - (void)dealloc
 {
 	[[NSNotificationCenter defaultCenter] removeObserver:self];
-	_defaultAttributes = nil;
 }
 
 /*!
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/AdiumServices.m
--- a/Source/AdiumServices.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/AdiumServices.m	Sun Apr 29 15:55:07 2012 -0400
@@ -33,11 +33,6 @@
 	return self;
 }
 
-- (void)dealloc
-{
-	services = nil;
-}
-
 /*!
  * @brief Register an AIService instance
  *
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/ESContactAlertsController.m
--- a/Source/ESContactAlertsController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/ESContactAlertsController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -56,17 +56,6 @@
 	
 }
 
-/*!
- * @brief Deallocate
- */
-- (void)dealloc
-{
-	globalOnlyEventHandlers = nil;
-	eventHandlers = nil;
-	actionHandlers = nil;
-}
-
-
 //Events ---------------------------------------------------------------------------------------------------------------
 #pragma mark Events
 
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/ESFileTransferProgressRow.m
--- a/Source/ESFileTransferProgressRow.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/ESFileTransferProgressRow.m	Sun Apr 29 15:55:07 2012 -0400
@@ -63,13 +63,7 @@
 
 - (void)dealloc
 {
-	owner = nil;
 	[fileTransfer setDelegate:nil];
-	view = nil;
-	sizeString = nil;
-	
-	bytesSentQueue = nil;
-	updateTickQueue = nil;
 }
 
 - (ESFileTransfer *)fileTransfer
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/ESFileTransferProgressWindowController.m
--- a/Source/ESFileTransferProgressWindowController.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/ESFileTransferProgressWindowController.m	Sun Apr 29 15:55:07 2012 -0400
@@ -104,8 +104,6 @@
 - (void)dealloc
 {
 	[[NSNotificationCenter defaultCenter] removeObserver:self];
-
-	progressRows = nil;
 }
 
 - (NSString *)adiumFrameAutosaveName
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/NEHGrowlPlugin.m
--- a/Source/NEHGrowlPlugin.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/NEHGrowlPlugin.m	Sun Apr 29 15:55:07 2012 -0400
@@ -103,11 +103,6 @@
 	queuedEvents = [[NSMutableDictionary alloc] init];
 }
 
-- (void)dealloc
-{
-	queuedEvents = nil;
-}
-
 /*!
  * @brief Adium finished launching
  *
diff -r 34872b5f5a2c -r 017a1f6c8761 Source/SetupWizardBackgroundView.m
--- a/Source/SetupWizardBackgroundView.m	Tue Apr 24 23:05:07 2012 -0400
+++ b/Source/SetupWizardBackgroundView.m	Sun Apr 29 15:55:07 2012 -0400
@@ -37,10 +37,6 @@
 	[self setNeedsDisplay:YES];
 }
 
-- (void) dealloc {
-	backgroundImage = nil;
-}
-
 - (void)setTransparentRect:(NSRect)inTransparentRect
 {
 	transparentRect = inTransparentRect;




More information about the commits mailing list