(String a, String b)
| 30 | public static Comparator<String> CASE_INSENSITIVE_ORDER |
| 31 | = new Comparator<String>() { |
| 32 | @Override |
| 33 | public int compare(String a, String b) { |
| 34 | return a.compareToIgnoreCase(b); |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | private final Object data; |
nothing calls this directly
no test coverage detected