Removed a bindings console.log statement incompatible with browsers without a debug console.

This commit is contained in:
Alexander Ljungberg
2010-05-26 19:14:03 -04:00
parent ed9c6d7959
commit 573444e640
+1 -1
View File
@@ -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];
}
}