2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

maintenance: remove java @Nullable parameter from Configuration class

This commit is contained in:
2026-03-17 00:18:01 +04:00
parent 13cfe8db13
commit b250776c82

View File

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