(Map<Object, Object> input)
| 604 | private static final Function<? extends Map<?, ?>, ? extends Map<?, ?>> UNMODIFIABLE_WRAPPER = |
| 605 | new Function<Map<Object, Object>, Map<Object, Object>>() { |
| 606 | @Override |
| 607 | public Map<Object, Object> apply(Map<Object, Object> input) { |
| 608 | return Collections.unmodifiableMap(input); |
| 609 | } |
| 610 | }; |
| 611 | |
| 612 | static boolean equalsImpl(Table<?, ?, ?> table, @Nullable Object obj) { |
nothing calls this directly
no test coverage detected