From 706e80362df34c56204e4ee386fd41bec05b0c9c Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Wed, 3 Nov 2010 01:25:08 -0700 Subject: [PATCH] Slight change to last commit, change == to ===. Reviewed by me. --- AppKit/CPArrayController.j | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AppKit/CPArrayController.j b/AppKit/CPArrayController.j index 385819d62..0574d66cd 100644 --- a/AppKit/CPArrayController.j +++ b/AppKit/CPArrayController.j @@ -1,4 +1,5 @@ + /* * CPArrayController.j * AppKit @@ -150,7 +151,7 @@ - (void)setContent:(id)value { - if (value == nil) + if (value === nil) value = []; if (![value isKindOfClass:[CPArray class]])