Test two values for equality. Differs from o1.equals(o2) only in that it copes with with null o1 properly.
(Object o1, Object o2)
| 1076 | * that it copes with with <tt>null</tt> o1 properly. |
| 1077 | */ |
| 1078 | private static boolean valEquals(Object o1, Object o2) { |
| 1079 | return (o1==null ? o2==null : o1.equals(o2)); |
| 1080 | } |
| 1081 | |
| 1082 | private static final boolean RED = false; |
| 1083 |