12
0

Changing Things around

Dieser Commit ist enthalten in:
Chaoscaot 2021-07-10 12:13:32 +02:00
Ursprung 62d6adaa46
Commit 99a2055265

Datei anzeigen

@ -253,18 +253,6 @@ public class SchematicNode {
return finalList;
}
public static List<SchematicNode> getBaselist(int owner) {
ResultSet set = SQL.select("SELECT ");
try {
List<SchematicNode> 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;