* Chnaged intervall for getting tables and macthes from server to 3000 milliseconds instead of 1000.

This commit is contained in:
LevelX2 2013-10-09 17:11:13 +02:00
parent a26b8947d0
commit cddff5fbac

View file

@ -799,7 +799,7 @@ class UpdateTablesTask extends SwingWorker<Void, Collection<TableView>> {
if (tables != null) {
this.publish(tables);
}
Thread.sleep(1000);
Thread.sleep(3000);
}
return null;
}