Skip to content

Commit

Permalink
Even more suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Apr 16, 2024
1 parent 31f5fcb commit 52b2dfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

@Mixin(ServerChunkCache.class)
public class ServerChunkCacheMixin {
@SuppressWarnings("UnusedAssignment")
@SuppressWarnings({"UnusedAssignment", "ParameterCanBeLocal"})
@Inject(method = "addRegionTicket", at = @At("HEAD"))
private <T> void init(TicketType<T> type, ChunkPos pos, int distance, T value, CallbackInfo ci) {
if (type == TicketType.START) {
Expand Down

0 comments on commit 52b2dfc

Please sign in to comment.