From 1aefd4faef834184c57121c6a523fb72e97f9de6 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sun, 6 Mar 2022 16:51:01 +0100 Subject: [PATCH] Fix reset --- SpigotCore_Main/src/de/steamwar/sql/Statement.java | 1 + 1 file changed, 1 insertion(+) diff --git a/SpigotCore_Main/src/de/steamwar/sql/Statement.java b/SpigotCore_Main/src/de/steamwar/sql/Statement.java index 13eec67..20e37f7 100644 --- a/SpigotCore_Main/src/de/steamwar/sql/Statement.java +++ b/SpigotCore_Main/src/de/steamwar/sql/Statement.java @@ -69,6 +69,7 @@ public class Statement { } catch (SQLException e) { Core.getInstance().getLogger().log(Level.INFO, "Could not close statement", e); } + statement.st = null; } }