--- dao/FuldDaekningWorker/src/main/java/dk/daoas/fulddaekning/LookupWorker.java 2015/12/28 16:09:42 2796 +++ dao/FuldDaekningWorker/src/main/java/dk/daoas/fulddaekning/LookupWorker.java 2015/12/29 13:11:20 2797 @@ -31,6 +31,7 @@ Map> hoTrees; Database db; Constants consts; + ProgressBar progressBar; AtomicInteger antalFundne; @@ -46,7 +47,8 @@ AtomicInteger antalFundne, Database db, boolean verbose, - Constants consts) { + Constants consts, + ProgressBar progressBar) { this.workerID = workerID; this.barrier = barrier; @@ -56,6 +58,7 @@ this.db = db; this.verbose = verbose; this.consts = consts; + this.progressBar = progressBar; } @@ -130,6 +133,8 @@ System.out.println("For stor afstand: " + qAdresse + " > " + bedsteAfstand); } } + + progressBar.tick(); }