From 5a5090c74d62ddb347d17b6bccfefc3719bf2396 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 19 May 2026 19:36:43 +0200 Subject: [PATCH] Remove unused import and fix incorrect import path in `BuilderCloudCommand` and `World` classes. Signed-off-by: Chaoscaot --- CommonCore/SQL/src/de/steamwar/sql/World.kt | 2 +- .../de/steamwar/velocitycore/commands/BuilderCloudCommand.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/World.kt b/CommonCore/SQL/src/de/steamwar/sql/World.kt index 174feda2..18ef36e8 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/World.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/World.kt @@ -22,7 +22,7 @@ package de.steamwar.sql import de.steamwar.sql.internal.useDb import org.jetbrains.exposed.v1.core.and import org.jetbrains.exposed.v1.core.dao.id.EntityID -import org.jetbrains.exposed.v1.core.dao.id.UUIDTable +import org.jetbrains.exposed.v1.core.dao.id.java.UUIDTable import org.jetbrains.exposed.v1.core.eq import org.jetbrains.exposed.v1.core.not import org.jetbrains.exposed.v1.dao.Entity diff --git a/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java b/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java index ebfe998a..9a4502a3 100644 --- a/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java +++ b/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java @@ -24,7 +24,6 @@ import de.steamwar.linkage.Linked; import de.steamwar.sql.SteamwarWorld; import de.steamwar.velocitycore.ArenaMode; import de.steamwar.velocitycore.ServerStarter; -import de.steamwar.velocitycore.ServerVersion; import de.steamwar.velocitycore.VelocityCore; import de.steamwar.command.PreviousArguments; import de.steamwar.command.SWCommand; @@ -120,7 +119,7 @@ public class BuilderCloudCommand extends SWCommand { @Override public Collection tabCompletes(Chatter sender, PreviousArguments previousArguments, String s) { ServerVersion version = getVersion(previousArguments, 1); - if (version == null) + if (version == null) { return Collections.emptyList(); }