We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5698cfb commit 736c922Copy full SHA for 736c922
src/main/java/org/junit/runner/manipulation/Sorter.java
@@ -14,11 +14,12 @@ public class Sorter implements Comparator<Description> {
14
/**
15
* NULL is a <code>Sorter</code> that leaves elements in an undefined order
16
*/
17
- public static Sorter NULL = new Sorter(new Comparator<Description>() {
+ public static final Sorter NULL = new Sorter(new Comparator<Description>() {
18
public int compare(Description o1, Description o2) {
19
return 0;
20
}
21
});
22
+
23
private final Comparator<Description> fComparator;
24
25
0 commit comments