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"); if (HConnection.DEBUG) System.out.println("connecting");
new Thread(() -> { try {
try { getHConnection().start();
getHConnection().start(); } catch (IOException e) {
} catch (IOException e) { e.printStackTrace();
e.printStackTrace(); }
}
}).start();
}).start(); }).start();
} }