This commit is contained in:
sirjonasxx 2019-01-16 18:43:53 +01:00
parent 0ca71ad174
commit f731ea0c02

View File

@ -117,13 +117,11 @@ public class Connection extends SubForm {
if (HConnection.DEBUG) System.out.println("connecting");
new Thread(() -> {
try {
getHConnection().start();
} catch (IOException e) {
e.printStackTrace();
}
}).start();
try {
getHConnection().start();
} catch (IOException e) {
e.printStackTrace();
}
}).start();
}