2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-03-22 07:50:47 +00:00

maintenance: remove java @Nullable parameter from Configuration class

This commit is contained in:
Mohammed Alteneiji 2026-03-17 00:18:01 +04:00
parent 13cfe8db13
commit b250776c82
Signed by: ham1255
GPG Key ID: EF343502046229F4

View File

@ -13,7 +13,6 @@ package com.imaginarycode.minecraft.redisbungee.api.config;
import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableList;
import com.google.common.net.InetAddresses; import com.google.common.net.InetAddresses;
import javax.annotation.Nullable;
import java.net.InetAddress; import java.net.InetAddress;
import java.util.List; import java.util.List;
@ -71,7 +70,7 @@ public class RedisBungeeConfiguration {
} }
public record CommandsConfiguration(boolean redisbungeeEnabled, boolean redisbungeeLegacyEnabled, public record CommandsConfiguration(boolean redisbungeeEnabled, boolean redisbungeeLegacyEnabled,
@Nullable LegacySubCommandsConfiguration legacySubCommandsConfiguration) { LegacySubCommandsConfiguration legacySubCommandsConfiguration) {
} }