removed unused DatabaseConnector

This commit is contained in:
Tim Tersch 2022-03-24 10:18:31 +01:00
parent e64344b5a2
commit 93a419f10c
1 changed files with 0 additions and 6 deletions

View File

@ -11,18 +11,12 @@ public class WordleServer extends Server {
new WordleServer(); new WordleServer();
} }
private DatabaseConnector db;
public WordleServer() { public WordleServer() {
this(DEFAULT_PORT); this(DEFAULT_PORT);
} }
public WordleServer( int pPort ) { public WordleServer( int pPort ) {
super(pPort); super(pPort);
db = new DatabaseConnector("", 0, "wordle.db", "", "");
games = new List<>(); games = new List<>();
} }