Skip to content

Commit

Permalink
add needed sleep
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4941 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
det committed Jun 20, 2008
1 parent d742cc0 commit 6c07e89
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/de/anomic/tools/diskUsage.java
Expand Up @@ -527,7 +527,9 @@ public void run() {
public List<String> getOutput(){
log.logInfo("logpoint 6 getOutput() of '"+ name +"' requested");
while(!isDone()) {
// wait
try {
Thread.sleep(1);
} catch (InterruptedException e) {}
}
return output;
}
Expand Down

0 comments on commit 6c07e89

Please sign in to comment.