(String input)
| 489 | .onResultOf( |
| 490 | new Function<String, String>() { |
| 491 | @Override |
| 492 | public String apply(String input) { |
| 493 | return input.toLowerCase(); |
| 494 | } |
| 495 | }); |
| 496 | |
| 497 | MapDifference<Integer, String> diff1 = Maps.difference(left, right, caseInsensitiveEquivalence); |
nothing calls this directly
no test coverage detected