adium/adium

Remove some no-longer-needed deallocs.
ARC
2012-04-29, Frank Dowsett
017a1f6c8761
Parents 34872b5f5a2c
Children 6ca9e2716e43
Remove some no-longer-needed deallocs.
  • +1 -2
    Frameworks/AIUtilities Framework/Source/AIColoredBoxView.h
  • +0 -5
    Frameworks/AIUtilities Framework/Source/AIColoredBoxView.m
  • +0 -6
    Frameworks/AIUtilities Framework/Source/AIImageTextCell.m
  • +0 -8
    Frameworks/AIUtilities Framework/Source/AIProgressDataUploader.m
  • +0 -5
    Frameworks/AIUtilities Framework/Source/JVMarkedScroller.m
  • +0 -6
    Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m
  • +0 -6
    Frameworks/Adium Framework/Source/AIChat.m
  • +0 -8
    Frameworks/Adium Framework/Source/AIContactHidingController.m
  • +0 -3
    Frameworks/Adium Framework/Source/AIContactMenu.m
  • +0 -4
    Frameworks/Adium Framework/Source/AIContactObserverManager.m
  • +0 -6
    Frameworks/Adium Framework/Source/AIContentObject.m
  • +0 -5
    Frameworks/Adium Framework/Source/AICorePluginLoader.m
  • +0 -5
    Frameworks/Adium Framework/Source/AIImageTextCellView.m
  • +0 -17
    Frameworks/Adium Framework/Source/AIListContact.m
  • +0 -5
    Frameworks/Adium Framework/Source/AIListContactBubbleCell.m
  • +0 -5
    Frameworks/Adium Framework/Source/AIListContactMockieCell.m
  • +0 -4
    Frameworks/Adium Framework/Source/AIListGroup.m
  • +0 -17
    Frameworks/Adium Framework/Source/AIListObject.m
  • +0 -5
    Frameworks/Adium Framework/Source/AIMetaContact.m
  • +0 -8
    Frameworks/Adium Framework/Source/AISortController.m
  • +0 -11
    Frameworks/Adium Framework/Source/ESContactAlertsViewController.m
  • +0 -4
    Frameworks/Adium Framework/Source/JVFontPreviewField.m
  • +0 -10
    Plugins/Dock Icon Badging/AIDockNameOverlay.m
  • +0 -5
    Plugins/Dual Window Interface/AIMessageTabViewItem.m
  • +0 -7
    Plugins/Image Uploading Plugin/AIGenericMultipartImageUploader.m
  • +0 -7
    Plugins/Image Uploading Plugin/AIImageShackImageUploader.m
  • +0 -7
    Plugins/Image Uploading Plugin/AIImgurImageUploader.m
  • +0 -4
    Plugins/Purple Service/ESJabberService.m
  • +0 -5
    Plugins/Purple Service/ESPurpleRequestActionController.m
  • +0 -7
    Plugins/Purple Service/ESPurpleRequestWindowController.m
  • +0 -36
    Plugins/Twitter Plugin/MGTwitterEngine/MGTwitterXMLParser.m
  • +0 -6
    Source/AIAddressBookInspectorPane.m
  • +0 -8
    Source/AIContactIdlePlugin.m
  • +0 -2
    Source/AIContactListImagePicker.m
  • +0 -8
    Source/AIContactSortSelectionPlugin.m
  • +0 -11
    Source/AIContentController.m
  • +0 -8
    Source/AIEditAccountWindowController.m
  • +0 -5
    Source/AIListObjectContentsPlugin.m
  • +0 -20
    Source/AILogViewerWindowController.m
  • +0 -7
    Source/AILoginWindowController.m
  • +0 -13
    Source/AIPreferenceController.m
  • +0 -1
    Source/AdiumFormatting.m
  • +0 -5
    Source/AdiumServices.m
  • +0 -11
    Source/ESContactAlertsController.m
  • +0 -6
    Source/ESFileTransferProgressRow.m
  • +0 -2
    Source/ESFileTransferProgressWindowController.m
  • +0 -5
    Source/NEHGrowlPlugin.m
  • +0 -4
    Source/SetupWizardBackgroundView.m
  • --- 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
    */
    -@property (weak, readwrite, nonatomic) NSColor *color;
    +@property (readwrite, nonatomic) NSColor *color;
    @end
    --- 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
    --- 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
    {
    --- 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.
    *
    --- 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 {
    --- 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
    *
    --- 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
    --- 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
    --- 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;
    }
    /*!
    --- 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
    --- 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
    {
    --- 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).
    --- 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
    {
    --- 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;
    --- 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;
    --- 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
    {
    --- 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
    --- 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]
    --- 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;
    --- 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
    --- 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
    --- 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;
    --- 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];
    --- 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
    --- 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
    {
    --- 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
    {
    --- 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
    {
    --- 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
    --- 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;
    --- 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) {
    --- 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);
    --- 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;
    --- 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.
    --- 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
    --- 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
    --- 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.
    --- 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
    --- 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
    *
    --- 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
    {
    --- 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
    {
    --- 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
    /*!
    --- 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;
    }
    /*!
    --- 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
    *
    --- 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
    --- 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
    --- 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
    --- 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
    *
    --- 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;