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;