adium 2103:89a96983d1b7: Remove pointless empty comments
commits at adium.im
commits at adium.im
Thu May 7 00:21:43 UTC 2009
details: http://hg.adium.im/adium/rev/89a96983d1b7
revision: 2103:89a96983d1b7
author: David Smith <catfish.man at gmail.com>
date: Wed May 06 17:21:36 2009 -0700
Remove pointless empty comments
diffstat:
Frameworks/AIUtilities Framework/Source/AIFloater.m | 7 -------
Frameworks/AIUtilities Framework/Source/AIImageAdditions.m | 1 -
Frameworks/AIUtilities Framework/Source/AIImageButton.m | 1 -
Frameworks/AIUtilities Framework/Source/AIOutlineViewAdditions.m | 2 --
Frameworks/AIUtilities Framework/Source/AIPlasticButton.m | 1 -
Frameworks/AIUtilities Framework/Source/AIPlasticButtonCell.m | 1 -
Frameworks/AIUtilities Framework/Source/AISendingTextView.m | 1 -
Frameworks/AIUtilities Framework/Source/AIStringAdditions.m | 2 --
Frameworks/AIUtilities Framework/Source/MVMenuButton.m | 3 ---
Frameworks/Adium Framework/Source/AIAbstractListController.m | 5 -----
Frameworks/Adium Framework/Source/AIAccountPlusFieldPromptController.m | 1 -
Frameworks/Adium Framework/Source/AIContentObject.m | 1 -
Frameworks/Adium Framework/Source/AIIconState.m | 1 -
Frameworks/Adium Framework/Source/AIListCell.m | 1 -
Frameworks/Adium Framework/Source/AIListContactCell.m | 2 --
Frameworks/Adium Framework/Source/AIListGroupCell.m | 2 --
Frameworks/Adium Framework/Source/AIListOutlineView+Drawing.m | 1 -
Frameworks/Adium Framework/Source/AIListOutlineView.m | 1 -
Frameworks/Adium Framework/Source/AIMetaContact.m | 1 -
Plugins/Contact Status Dock Overlays/AIContactStatusDockOverlaysPlugin.m | 2 --
Plugins/Dual Window Interface/AIMessageTabViewItem.m | 4 ----
Plugins/Dual Window Interface/AIMessageWindowController.m | 3 ---
Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.h | 1 -
Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.m | 1 -
Plugins/Purple Service/AIGTalkService.m | 1 -
Plugins/Purple Service/AILiveJournalService.m | 1 -
Plugins/Purple Service/AIMobileMeService.m | 1 -
Plugins/Purple Service/ESDotMacService.m | 1 -
Plugins/Purple Service/ESPurpleICQAccountViewController.m | 1 -
Plugins/Send Message Contact Alert/ESSendMessageAlertDetailPane.m | 1 -
Plugins/Video Chat Interface/AILocalVideoWindowController.m | 2 --
Source/AIAppearancePreferencesPlugin.m | 3 ---
Source/AIContactStatusColoringPlugin.m | 2 --
Source/AIEmoticonController.m | 1 -
Source/AIHoveringPopUpButton.m | 1 -
Source/AIListLayoutWindowController.m | 1 -
Source/AIListThemeWindowController.m | 2 --
Source/AIListWindowController.m | 2 --
Source/AILogFromGroup.m | 1 -
Source/AILogToGroup.m | 1 -
Source/AILogViewerWindowController.m | 2 --
Source/AILoggerPlugin.h | 1 -
Source/AILoggerPlugin.m | 1 -
Source/AILoginController.m | 1 -
Source/ESFileTransferProgressWindowController.m | 1 -
45 files changed, 0 insertions(+), 74 deletions(-)
diffs (719 lines):
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIFloater.m
--- a/Frameworks/AIUtilities Framework/Source/AIFloater.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIFloater.m Wed May 06 17:21:36 2009 -0700
@@ -27,7 +27,6 @@
return [[self alloc] initWithImage:inImage styleMask:styleMask];
}
-//
- (id)initWithImage:(NSImage *)inImage styleMask:(unsigned int)styleMask
{
if ((self = [super init])) {
@@ -58,14 +57,12 @@
return self;
}
-//
- (void)moveFloaterToPoint:(NSPoint)inPoint
{
[panel setFrameOrigin:inPoint];
[panel orderFront:nil];
}
-//
- (void)setImage:(NSImage *)inImage
{
NSRect frame = [panel frame];
@@ -74,19 +71,16 @@
[panel setFrame:frame display:YES animate:NO];
}
-//
- (NSImage *)image
{
return [staticView image];
}
-//
- (void)endFloater
{
[self close:nil];
}
-//
- (IBAction)close:(id)sender
{
[fadeAnimation stopAnimation]; [fadeAnimation release]; fadeAnimation = nil;
@@ -96,7 +90,6 @@
[self release];
}
-//
- (void)setMaxOpacity:(float)inMaxOpacity
{
maxOpacity = inMaxOpacity;
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIImageAdditions.m
--- a/Frameworks/AIUtilities Framework/Source/AIImageAdditions.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIImageAdditions.m Wed May 06 17:21:36 2009 -0700
@@ -184,7 +184,6 @@
// NOTE: Black & White images fail miserably
// So we must get their data and blast that into a deeper cache
// Yucky, so we wrap this all up inside this object...
-//
- (NSBitmapImageRep *)bitmapRepForGIFRepresentation
{
NSArray *reps = [self representations];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIImageButton.m
--- a/Frameworks/AIUtilities Framework/Source/AIImageButton.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIImageButton.m Wed May 06 17:21:36 2009 -0700
@@ -11,7 +11,6 @@
@implementation AIImageButton
-//
- (id)initWithFrame:(NSRect)frame
{
if ((self = [super initWithFrame:frame])) {
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIOutlineViewAdditions.m
--- a/Frameworks/AIUtilities Framework/Source/AIOutlineViewAdditions.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIOutlineViewAdditions.m Wed May 06 17:21:36 2009 -0700
@@ -34,7 +34,6 @@
}
}
-//
- (NSArray *)arrayOfSelectedItems
{
NSMutableArray *itemArray = [NSMutableArray array];
@@ -60,7 +59,6 @@
return itemArray;
}
-//
- (void)selectItemsInArray:(NSArray *)selectedItems
{
NSEnumerator *enumerator = [selectedItems objectEnumerator];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIPlasticButton.m
--- a/Frameworks/AIUtilities Framework/Source/AIPlasticButton.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIPlasticButton.m Wed May 06 17:21:36 2009 -0700
@@ -18,7 +18,6 @@
[self setCellClass:[AIPlasticButtonCell class]];
}
-//
- (id)copyWithZone:(NSZone *)zone
{
AIPlasticButton *newButton = [[[self class] allocWithZone:zone] initWithFrame:[self frame]];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIPlasticButtonCell.m
--- a/Frameworks/AIUtilities Framework/Source/AIPlasticButtonCell.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIPlasticButtonCell.m Wed May 06 17:21:36 2009 -0700
@@ -27,7 +27,6 @@
#pragma mark Birth and Death
-//
- (id)copyWithZone:(NSZone *)zone
{
AIPlasticButtonCell *newCell = [[self class] allocWithZone:zone];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AISendingTextView.m
--- a/Frameworks/AIUtilities Framework/Source/AISendingTextView.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AISendingTextView.m Wed May 06 17:21:36 2009 -0700
@@ -128,7 +128,6 @@
if (insertText) [super insertText:aString];
}
-//
- (void)interpretKeyEvents:(NSArray *)eventArray
{
unsigned index = 0;
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/AIStringAdditions.m
--- a/Frameworks/AIUtilities Framework/Source/AIStringAdditions.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/AIStringAdditions.m Wed May 06 17:21:36 2009 -0700
@@ -197,7 +197,6 @@
}
#define BUNDLE_STRING @"$$BundlePath$$"
-//
- (NSString *)stringByExpandingBundlePath
{
if ([self hasPrefix:BUNDLE_STRING]) {
@@ -207,7 +206,6 @@
}
}
-//
- (NSString *)stringByCollapsingBundlePath
{
NSString *bundlePath = [[[NSBundle mainBundle] bundlePath] stringByExpandingTildeInPath];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/AIUtilities Framework/Source/MVMenuButton.m
--- a/Frameworks/AIUtilities Framework/Source/MVMenuButton.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/AIUtilities Framework/Source/MVMenuButton.m Wed May 06 17:21:36 2009 -0700
@@ -9,7 +9,6 @@
@implementation MVMenuButton
-//
- (id)initWithFrame:(NSRect)frame
{
if ((self = [super initWithFrame:frame])) {
@@ -26,7 +25,6 @@
return self;
}
-//
- (id)copyWithZone:(NSZone *)zone
{
MVMenuButton *newButton = [[[self class] allocWithZone:zone] initWithFrame:[self frame]];
@@ -42,7 +40,6 @@
return newButton;
}
-//
- (void)dealloc
{
[bigImage release];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIAbstractListController.m
--- a/Frameworks/Adium Framework/Source/AIAbstractListController.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIAbstractListController.m Wed May 06 17:21:36 2009 -0700
@@ -645,13 +645,11 @@
}
}
-//
- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(AIProxyListObject *)item
{
return @"";
}
-//
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(AIProxyListObject *)item
{
return (!item || ([item.listObject conformsToProtocol:@protocol(AIContainingObject)] &&
@@ -663,14 +661,12 @@
return (!item || ([item.listObject isKindOfClass:[AIListGroup class]]));
}
-//
- (void)outlineView:(NSOutlineView *)outlineView setExpandState:(BOOL)state ofItem:(AIProxyListObject *)item
{
/* XXX Should note the combination of item and item's parent for expansion tracking */
[(id<AIContainingObject>)(item.listObject) setExpanded:state];
}
-//
- (BOOL)outlineView:(NSOutlineView *)outlineView expandStateOfItem:(AIProxyListObject *)item
{
return !item || ((id<AIContainingObject>)(item.listObject)).expanded || [item.listObject boolValueForProperty:@"ExpandedByFiltering"];
@@ -695,7 +691,6 @@
forListObject:listObject];
}
-//
- (NSMenu *)outlineView:(NSOutlineView *)outlineView menuForEvent:(NSEvent *)theEvent
{
NSPoint location;
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIAccountPlusFieldPromptController.m
--- a/Frameworks/Adium Framework/Source/AIAccountPlusFieldPromptController.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIAccountPlusFieldPromptController.m Wed May 06 17:21:36 2009 -0700
@@ -169,7 +169,6 @@
[[self window] center];
}
-//
- (void)windowWillClose:(id)sender
{
[super windowWillClose:sender];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIContentObject.m
--- a/Frameworks/Adium Framework/Source/AIContentObject.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIContentObject.m Wed May 06 17:21:36 2009 -0700
@@ -26,7 +26,6 @@
@synthesize source, destination, date, isOutgoing = outgoing, chat, message, userInfo;
@synthesize filterContent, trackContent, displayContent, displayContentImmediately, sendContent, postProcessContent;
-//
- (id)initWithChat:(AIChat *)inChat
source:(AIListObject *)inSource
destination:(AIListObject *)inDest
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIIconState.m
--- a/Frameworks/Adium Framework/Source/AIIconState.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIIconState.m Wed May 06 17:21:36 2009 -0700
@@ -22,7 +22,6 @@
@implementation AIIconState
-//
- (id)initWithImages:(NSArray *)inImages delay:(float)inDelay looping:(BOOL)inLooping overlay:(BOOL)inOverlay
{
//init
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIListCell.m
--- a/Frameworks/Adium Framework/Source/AIListCell.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIListCell.m Wed May 06 17:21:36 2009 -0700
@@ -169,7 +169,6 @@
//Drawing --------------------------------------------------------------------------------------------------------------
#pragma mark Drawing
-//
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)inControlView{
[self drawInteriorWithFrame:cellFrame inView:inControlView];
}
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIListContactCell.m
--- a/Frameworks/Adium Framework/Source/AIListContactCell.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIListContactCell.m Wed May 06 17:21:36 2009 -0700
@@ -334,7 +334,6 @@
return backgroundOpacity;
}
-//
- (void)setBackgroundColorIsStatus:(BOOL)isStatus
{
backgroundColorIsStatus = isStatus;
@@ -702,7 +701,6 @@
return [AIServiceIcons serviceIconForObject:listObject type:AIServiceIconList direction:AIIconFlipped];
}
-//
- (float)imageOpacityForDrawing
{
NSNumber *imageOpacityNumber = [listObject numberValueForProperty:@"Image Opacity"];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIListGroupCell.m
--- a/Frameworks/Adium Framework/Source/AIListGroupCell.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIListGroupCell.m Wed May 06 17:21:36 2009 -0700
@@ -85,7 +85,6 @@
return shadowColor;
}
-//
- (void)setDrawsBackground:(BOOL)inValue
{
drawsBackground = inValue;
@@ -107,7 +106,6 @@
[self flushGradientCache];
}
-//
- (void)setDrawsGradientEdges:(BOOL)inValue
{
drawsGradientEdges = inValue;
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIListOutlineView+Drawing.m
--- a/Frameworks/Adium Framework/Source/AIListOutlineView+Drawing.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIListOutlineView+Drawing.m Wed May 06 17:21:36 2009 -0700
@@ -135,7 +135,6 @@
[self setNeedsDisplay:YES];
}
-//
- (void)setBackgroundOpacity:(float)opacity forWindowStyle:(AIContactListWindowStyle)inWindowStyle
{
backgroundOpacity = opacity;
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIListOutlineView.m
--- a/Frameworks/Adium Framework/Source/AIListOutlineView.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIListOutlineView.m Wed May 06 17:21:36 2009 -0700
@@ -118,7 +118,6 @@
return YES;
}
-//
- (void)cancelOperation:(id)sender
{
[self deselectAll:nil];
diff -r e391e3c13aa7 -r 89a96983d1b7 Frameworks/Adium Framework/Source/AIMetaContact.m
--- a/Frameworks/Adium Framework/Source/AIMetaContact.m Wed May 06 17:16:09 2009 -0700
+++ b/Frameworks/Adium Framework/Source/AIMetaContact.m Wed May 06 17:21:36 2009 -0700
@@ -92,7 +92,6 @@
return objectID;
}
-//
- (NSString *)internalObjectID
{
if (!internalObjectID) {
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Contact Status Dock Overlays/AIContactStatusDockOverlaysPlugin.m
--- a/Plugins/Contact Status Dock Overlays/AIContactStatusDockOverlaysPlugin.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Contact Status Dock Overlays/AIContactStatusDockOverlaysPlugin.m Wed May 06 17:21:36 2009 -0700
@@ -296,7 +296,6 @@
return nil;
}
-//
- (void)_setOverlay
{
//Remove & release the current overlay state
@@ -322,7 +321,6 @@
}
}
-//
- (NSImage *)overlayImageFlash:(BOOL)flash
{
NSEnumerator *enumerator;
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Dual Window Interface/AIMessageTabViewItem.m
--- a/Plugins/Dual Window Interface/AIMessageTabViewItem.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Dual Window Interface/AIMessageTabViewItem.m Wed May 06 17:21:36 2009 -0700
@@ -98,7 +98,6 @@
return self;
}
-//
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
@@ -172,7 +171,6 @@
[self listObjectAttributesChanged:notification];
}
-//
- (void)chatStatusChanged:(NSNotification *)notification
{
NSArray *keys = [[notification userInfo] objectForKey:@"Keys"];
@@ -205,7 +203,6 @@
[self updateTabContactIcon];
}
-//
- (void)listObjectAttributesChanged:(NSNotification *)notification
{
AIListObject *listObject = [notification object];
@@ -270,7 +267,6 @@
[messageViewController willDeselect];
}
-//
- (NSString *)label
{
return messageViewController.chat.displayName;
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Dual Window Interface/AIMessageWindowController.m
--- a/Plugins/Dual Window Interface/AIMessageWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Dual Window Interface/AIMessageWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -173,7 +173,6 @@
return tabView_tabBar;
}
-//
- (NSString *)adiumFrameAutosaveName
{
return [self _frameSaveKey];
@@ -284,7 +283,6 @@
return;
}
-//
- (void)preferencesChangedForGroup:(NSString *)group key:(NSString *)key
object:(AIListObject *)object preferenceDict:(NSDictionary *)prefDict firstTime:(BOOL)firstTime
{
@@ -552,7 +550,6 @@
}
}
-//
- (void)moveTabViewItem:(AIMessageTabViewItem *)inTabViewItem toIndex:(NSInteger)index
{
AIChat *chat = inTabViewItem.chat;
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.h
--- a/Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.h Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.h Wed May 06 17:21:36 2009 -0700
@@ -42,7 +42,6 @@
- (IBAction)invite:(id)sender;
- (IBAction)cancel:(id)sender;
-//
-(void)inviteToChat:(AIListContact*)contact;
- (id)initWithWindowNibName:(NSString *)windowNibName;
@end
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.m
--- a/Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Invite to Chat Plugin/DCInviteToChatWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -180,7 +180,6 @@
(!contact.online || inContact.online));
}
-//
-(void)inviteToChat:(AIListContact*)inContact
{
// Sanity check: is there really a list object and a chat?
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Purple Service/AIGTalkService.m
--- a/Plugins/Purple Service/AIGTalkService.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Purple Service/AIGTalkService.m Wed May 06 17:21:36 2009 -0700
@@ -26,7 +26,6 @@
return [AIPurpleGTalkAccount class];
}
-//
- (AIAccountViewController *)accountViewController{
return [AIPurpleGTalkAccountViewController accountViewController];
}
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Purple Service/AILiveJournalService.m
--- a/Plugins/Purple Service/AILiveJournalService.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Purple Service/AILiveJournalService.m Wed May 06 17:21:36 2009 -0700
@@ -25,7 +25,6 @@
return [AIPurpleLiveJournalAccount class];
}
-//
- (AIAccountViewController *)accountViewController{
return [ESPurpleJabberAccountViewController accountViewController];
}
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Purple Service/AIMobileMeService.m
--- a/Plugins/Purple Service/AIMobileMeService.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Purple Service/AIMobileMeService.m Wed May 06 17:21:36 2009 -0700
@@ -26,7 +26,6 @@
return [AIPurpleMobileMeAccount class];
}
-//
- (AIAccountViewController *)accountViewController{
return [AIPurpleMobileMeAccountViewController accountViewController];
}
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Purple Service/ESDotMacService.m
--- a/Plugins/Purple Service/ESDotMacService.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Purple Service/ESDotMacService.m Wed May 06 17:21:36 2009 -0700
@@ -25,7 +25,6 @@
return [ESPurpleDotMacAccount class];
}
-//
- (AIAccountViewController *)accountViewController{
return [ESPurpleDotMacAccountViewController accountViewController];
}
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Purple Service/ESPurpleICQAccountViewController.m
--- a/Plugins/Purple Service/ESPurpleICQAccountViewController.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Purple Service/ESPurpleICQAccountViewController.m Wed May 06 17:21:36 2009 -0700
@@ -25,7 +25,6 @@
return @"ESPurpleICQAccountView";
}
-//
- (void)awakeFromNib
{
[super awakeFromNib];
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Send Message Contact Alert/ESSendMessageAlertDetailPane.m
--- a/Plugins/Send Message Contact Alert/ESSendMessageAlertDetailPane.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Send Message Contact Alert/ESSendMessageAlertDetailPane.m Wed May 06 17:21:36 2009 -0700
@@ -59,7 +59,6 @@
[popUp_messageFrom setMenu:[accountMenu menu]];
}
-//
- (void)viewWillClose
{
[toContact release]; toContact = nil;
diff -r e391e3c13aa7 -r 89a96983d1b7 Plugins/Video Chat Interface/AILocalVideoWindowController.m
--- a/Plugins/Video Chat Interface/AILocalVideoWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Plugins/Video Chat Interface/AILocalVideoWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -29,7 +29,6 @@
}
}
-//
- (id)initWithWindowNibName:(NSString *)windowNibName
{
[super initWithWindowNibName:windowNibName];
@@ -43,7 +42,6 @@
return self;
}
-//
- (void)dealloc
{
[localVideo stopCapturingVideo];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIAppearancePreferencesPlugin.m
--- a/Source/AIAppearancePreferencesPlugin.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIAppearancePreferencesPlugin.m Wed May 06 17:21:36 2009 -0700
@@ -296,7 +296,6 @@
return success;
}
-//
- (BOOL)renameSetWithName:(NSString *)setName extension:(NSString *)extension inFolder:(NSString *)folder toName:(NSString *)newName
{
BOOL success;
@@ -316,7 +315,6 @@
return success;
}
-//
- (BOOL)duplicateSetWithName:(NSString *)setName extension:(NSString *)extension inFolder:(NSString *)folder newName:(NSString *)newName
{
BOOL success;
@@ -342,7 +340,6 @@
return [[objectA objectForKey:@"name"] caseInsensitiveCompare:[objectB objectForKey:@"name"]];
}
-//
- (NSArray *)availableSetsWithExtension:(NSString *)extension fromFolder:(NSString *)folder
{
NSMutableArray *setArray = [NSMutableArray array];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIContactStatusColoringPlugin.m
--- a/Source/AIContactStatusColoringPlugin.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIContactStatusColoringPlugin.m Wed May 06 17:21:36 2009 -0700
@@ -112,7 +112,6 @@
[super dealloc];
}
-//
- (NSSet *)updateListObject:(AIListObject *)inObject keys:(NSSet *)inModifiedKeys silent:(BOOL)silent
{
NSSet *modifiedAttributes = nil;
@@ -288,7 +287,6 @@
}
}
-//
- (void)preferencesChangedForGroup:(NSString *)group key:(NSString *)key
object:(AIListObject *)object preferenceDict:(NSDictionary *)prefDict firstTime:(BOOL)firstTime
{
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIEmoticonController.m
--- a/Source/AIEmoticonController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIEmoticonController.m Wed May 06 17:21:36 2009 -0700
@@ -104,7 +104,6 @@
[adium.preferenceController unregisterPreferenceObserver:self];
}
-//
- (void)preferencesChangedForGroup:(NSString *)group key:(NSString *)key
object:(AIListObject *)object preferenceDict:(NSDictionary *)prefDict firstTime:(BOOL)firstTime
{
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIHoveringPopUpButton.m
--- a/Source/AIHoveringPopUpButton.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIHoveringPopUpButton.m Wed May 06 17:21:36 2009 -0700
@@ -46,7 +46,6 @@
[self initHoveringPopUpButton];
}
-//
- (id)copyWithZone:(NSZone *)zone
{
AIHoveringPopUpButton *newButton = [[[self class] allocWithZone:zone] initWithFrame:[self frame]];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIListLayoutWindowController.m
--- a/Source/AIListLayoutWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIListLayoutWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -343,7 +343,6 @@
}
}
-//
- (void)updateSliderValues
{
NSInteger iconSize = [slider_userIconSize integerValue];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIListThemeWindowController.m
--- a/Source/AIListThemeWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIListThemeWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -104,7 +104,6 @@
[self closeWindow:sender];
}
-//
- (IBAction)okay:(id)sender
{
[target listThemeEditorWillCloseWithChanges:YES forThemeNamed:themeName];
@@ -466,7 +465,6 @@
}
}
-//
- (void)updateSliderValues
{
[textField_backgroundFade setStringValue:[NSString stringWithFormat:@"%ld%%", (NSInteger)([slider_backgroundFade doubleValue] * 100.0)]];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AIListWindowController.m
--- a/Source/AIListWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AIListWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -161,7 +161,6 @@
[super dealloc];
}
-//
- (NSString *)adiumFrameAutosaveName
{
AILogWithSignature(@"My autosave name is %@",[NSString stringWithFormat:@"Contact List:%@", [[self contactList] contentsBasedIdentifier]]);
@@ -575,7 +574,6 @@
[[NSNotificationCenter defaultCenter] postNotificationName:Interface_ContactListDidResignMain object:self];
}
-//
- (void)showWindowInFrontIfAllowed:(BOOL)inFront
{
//Always show for three seconds at least if we're told to show
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILogFromGroup.m
--- a/Source/AILogFromGroup.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILogFromGroup.m Wed May 06 17:21:36 2009 -0700
@@ -47,7 +47,6 @@
[super dealloc];
}
-//
- (NSString *)fromUID
{
return fromUID;
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILogToGroup.m
--- a/Source/AILogToGroup.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILogToGroup.m Wed May 06 17:21:36 2009 -0700
@@ -65,7 +65,6 @@
return from;
}
-//
- (NSString *)to
{
return to;
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILogViewerWindowController.m
--- a/Source/AILogViewerWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILogViewerWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -350,7 +350,6 @@
}
}
-//
- (NSString *)adiumFrameAutosaveName
{
return KEY_LOG_VIEWER_WINDOW_FRAME;
@@ -1721,7 +1720,6 @@
}
}
-//
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
NSString *identifier = [tableColumn identifier];
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILoggerPlugin.h
--- a/Source/AILoggerPlugin.h Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILoggerPlugin.h Wed May 06 17:21:36 2009 -0700
@@ -93,7 +93,6 @@
- (void)markLogDirtyAtPath:(NSString *)path;
- (BOOL)getIndexingProgress:(NSUInteger *)complete outOf:(NSUInteger *)total;
-//
- (void)stopIndexingThreads;
- (void)dirtyAllLogs;
- (void)cleanDirtyLogs;
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILoggerPlugin.m
--- a/Source/AILoggerPlugin.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILoggerPlugin.m Wed May 06 17:21:36 2009 -0700
@@ -103,7 +103,6 @@
@implementation AILoggerPlugin
-//
- (void)installPlugin
{
observingContent = NO;
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/AILoginController.m
--- a/Source/AILoginController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/AILoginController.m Wed May 06 17:21:36 2009 -0700
@@ -137,7 +137,6 @@
return userDirectory;
}
-//
- (NSString *)currentUser
{
return currentUser;
diff -r e391e3c13aa7 -r 89a96983d1b7 Source/ESFileTransferProgressWindowController.m
--- a/Source/ESFileTransferProgressWindowController.m Wed May 06 17:16:09 2009 -0700
+++ b/Source/ESFileTransferProgressWindowController.m Wed May 06 17:21:36 2009 -0700
@@ -105,7 +105,6 @@
[super dealloc];
}
-//
- (NSString *)adiumFrameAutosaveName
{
return KEY_TRANSFER_PROGRESS_WINDOW_FRAME;
More information about the commits
mailing list