Added lots of 'final' modifiers to class fields where applicable.
Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
@@ -39,13 +39,13 @@ public enum BeatmapSortOrder {
|
||||
LENGTH (4, "Length", new LengthOrder());
|
||||
|
||||
/** The ID of the sort (used for tab positioning). */
|
||||
private int id;
|
||||
private final int id;
|
||||
|
||||
/** The name of the sort. */
|
||||
private String name;
|
||||
private final String name;
|
||||
|
||||
/** The comparator for the sort. */
|
||||
private Comparator<BeatmapSetNode> comparator;
|
||||
private final Comparator<BeatmapSetNode> comparator;
|
||||
|
||||
/** The tab associated with the sort (displayed in Song Menu screen). */
|
||||
private MenuButton tab;
|
||||
|
||||
Reference in New Issue
Block a user