forked from IF-LK-2020/wordle
removed unused DatabaseConnector
This commit is contained in:
parent
e64344b5a2
commit
93a419f10c
|
@ -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<>();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue