You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The constructor for Box checks if the private field _cols is null to decide
whether it should generate colors. It is supposed to check if the parameter
$sixColor4s is null.
if (_cols != null) // should be if ($sixColor4s != null)
{
_cols = $sixColor4s;
}
else
{
//generate colors
}
Original issue reported on code.google.com by nienhs on 28 Oct 2010 at 9:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
nienhs
on 28 Oct 2010 at 9:14The text was updated successfully, but these errors were encountered: