Adium

Changeset 12996

Show
Ignore:
Timestamp:
08/01/2005 04:54:06 PM (3 years ago)
Author:
evands
Message:

Minor cleanup, removing an unneeded called

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/Adium Framework/AIListObject.m

    r12811 r12996  
    442442- (void)setDisplayUserIcon:(NSImage *)inImage withOwner:(id)inOwner priorityLevel:(float)inPriorityLevel 
    443443{ 
    444         AIMutableOwnerArray *userIconDisplayArray; 
    445         NSImage                         *oldImage; 
    446          
    447         //If inImage is nil, we don't want to create the display array if it doesn't already exist 
    448         userIconDisplayArray = (inImage ? 
    449                                                         [self displayArrayForKey:KEY_USER_ICON] : 
    450                                                         [self displayArrayForKey:KEY_USER_ICON create:NO]); 
    451         oldImage = [self displayUserIcon]; 
    452          
     444        NSImage                         *oldImage = [self displayUserIcon]; 
     445 
    453446        [[self displayArrayForKey:KEY_USER_ICON] setObject:inImage 
    454447                                                                                         withOwner:inOwner 
     
    459452                AIListObject    *myContainingObject = [self containingObject]; 
    460453                NSSet                   *modifiedKeys = [NSSet setWithObject:KEY_USER_ICON]; 
    461                 
     454         
    462455                [AIUserIcons flushCacheForContact:(AIListContact *)self]; 
    463456