From 573444e640a9e87c463f76efb0b196cc85d148da Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Thu, 10 Dec 2009 13:49:36 +0100 Subject: [PATCH] Removed a bindings console.log statement incompatible with browsers without a debug console. --- AppKit/CPTableColumn.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPTableColumn.j b/AppKit/CPTableColumn.j index b1720cf56..ff1b1152f 100644 --- a/AppKit/CPTableColumn.j +++ b/AppKit/CPTableColumn.j @@ -416,7 +416,7 @@ CPTableColumnUserResizingMask = 1 << 1; bindingInfo = [bindingsDictionary objectForKey:bindingName]._info, destination = [bindingInfo objectForKey:CPObservedObjectKey], keyPath = [bindingInfo objectForKey:CPObservedKeyPathKey]; - console.log(bindingName+" : "+keyPath+" : "+aRow+" : "+[[destination valueForKeyPath:keyPath] objectAtIndex:aRow]); + // console.log(bindingName+" : "+keyPath+" : "+aRow+" : "+[[destination valueForKeyPath:keyPath] objectAtIndex:aRow]); [aDataView setValue:[[destination valueForKeyPath:keyPath] objectAtIndex:aRow] forKey:bindingPath]; } }