(Method lhs, Method rhs)
| 194 | |
| 195 | private final static Comparator<Method> methodComparator = new Comparator<Method>() { |
| 196 | public int compare(Method lhs, Method rhs) { |
| 197 | return lhs.getName().compareTo(rhs.getName()); |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | private final StaticConfiguration config; |
no test coverage detected