Remove dependency on org.checkerframework (1.7.10)

This commit is contained in:
Fabian Maurer
2025-09-19 13:58:43 +02:00
parent 361d251aa2
commit 15cda35434
@@ -11,7 +11,6 @@ import com.seibel.distanthorizons.core.network.session.NetworkSession;
import com.seibel.distanthorizons.core.wrapperInterfaces.minecraft.IMinecraftClientWrapper;
import com.seibel.distanthorizons.core.wrapperInterfaces.world.IClientLevelWrapper;
import org.apache.logging.log4j.LogManager;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.jetbrains.annotations.Nullable;
import java.util.Objects;
@@ -65,7 +64,7 @@ public class ClientPluginChannelApi
//================//
/** fired when this client connects to a server with DH support */
public void onJoinServer(@NonNull NetworkSession networkSession)
public void onJoinServer(NetworkSession networkSession)
{
Objects.requireNonNull(networkSession);
this.networkSession = networkSession;