From 99a205526536215be885a70e981c190730b4a953 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Sat, 10 Jul 2021 12:13:32 +0200 Subject: [PATCH] Changing Things around --- .../src/de/steamwar/sql/SchematicNode.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/SpigotCore_Main/src/de/steamwar/sql/SchematicNode.java b/SpigotCore_Main/src/de/steamwar/sql/SchematicNode.java index f4128ff..d310a4a 100644 --- a/SpigotCore_Main/src/de/steamwar/sql/SchematicNode.java +++ b/SpigotCore_Main/src/de/steamwar/sql/SchematicNode.java @@ -253,18 +253,6 @@ public class SchematicNode { return finalList; } - public static List getBaselist(int owner) { - ResultSet set = SQL.select("SELECT "); - try { - List nodes = new ArrayList<>(); - while (set.next()) - nodes.add(new SchematicNode(set)); - return nodes; - } catch (SQLException e) { - throw new SecurityException("Failed listing schematics", e); - } - } - private final int id; private final int owner; private String name;