(final Method a, final Method b)
| 62 | */ |
| 63 | public static final Comparator<Method> METHOD_COMPARATOR = new Comparator<Method>() { |
| 64 | public int compare(final Method a, final Method b) { |
| 65 | final int scoreA = getVisibility(a); |
| 66 | final int scoreB = getVisibility(b); |
| 67 | return (scoreA < scoreB) ? -1 : ((scoreA == scoreB) ? 0 : 1); |
| 68 | |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 |
nothing calls this directly
no test coverage detected