Skip to content

Commit db9e01c

Browse files
committed
cleanup
1 parent caf88c7 commit db9e01c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/lambda/mixin/render/PlayerListHudMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@Mixin(PlayerListHud.class)
4949
public class PlayerListHudMixin {
5050
@Shadow @Final private static Comparator<PlayerListEntry> ENTRY_ORDERING;
51-
@Unique @Final private static Comparator<PlayerListEntry> FRIENDS_FIRST_ENTRY_ORDERING = Comparator
51+
@Unique private static final Comparator<PlayerListEntry> FRIENDS_FIRST_ENTRY_ORDERING = Comparator
5252
.comparingInt((PlayerListEntry entry) -> FriendManager.INSTANCE.isFriend(entry.getProfile().name()) ? 0 : 1)
5353
.thenComparingInt(entry -> -entry.getListOrder())
5454
.thenComparingInt((entry) -> entry.getGameMode() == GameMode.SPECTATOR ? 1 : 0)

0 commit comments

Comments
 (0)