(Entry entry, Map.Entry<?, ?> oEntry)
| 242 | } |
| 243 | |
| 244 | private static boolean valuesEq(Entry entry, Map.Entry<?, ?> oEntry) { |
| 245 | return (entry != null) && |
| 246 | ((entry.value == null) ? |
| 247 | (oEntry.getValue() == null) : |
| 248 | (areEqualValues(entry.value, oEntry.getValue()))); |
| 249 | } |
| 250 | |
| 251 | @Override |
| 252 | public Iterator<Map.Entry<KT, VT>> iterator() { |
no test coverage detected