We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb577cf commit ff35cb6Copy full SHA for ff35cb6
junit-platform-commons/src/main/java/org/junit/platform/commons/util/ReflectionUtils.java
@@ -1698,8 +1698,8 @@ private static List<Method> toSortedMutableList(Method[] methods) {
1698
return toSortedMutableList(methods, ReflectionUtils::defaultMethodSorter);
1699
}
1700
1701
- private static List<Class<?>> toSortedMutableList(Class<?>[] fields) {
1702
- return toSortedMutableList(fields, ReflectionUtils::defaultClassSorter);
+ private static List<Class<?>> toSortedMutableList(Class<?>[] classes) {
+ return toSortedMutableList(classes, ReflectionUtils::defaultClassSorter);
1703
1704
1705
private static <T> List<T> toSortedMutableList(T[] items, Comparator<? super T> comparator) {
0 commit comments