(double score, double maxScore)
| 743 | } |
| 744 | |
| 745 | private static double getRawScore(double score, double maxScore) { |
| 746 | return Math.sqrt(score) * maxScore; |
| 747 | } |
| 748 | |
| 749 | public static <T> void sanitizeMatches(Map<T, T> matches) { |
| 750 | Set<T> matched = Collections.newSetFromMap(new IdentityHashMap<>(matches.size())); |
no outgoing calls
no test coverage detected