Skip to content

Commit

Permalink
fix threading when running LogAnalyser with threads. #81
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouckaert committed Aug 9, 2024
1 parent d159091 commit 917c22b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/beastfx/app/tools/LogAnalyser.java
Original file line number Diff line number Diff line change
Expand Up @@ -668,8 +668,8 @@ static void printUsageAndExit() {
}

class CoreRunnable implements java.lang.Runnable {
private boolean headerPrinted = false;
private int lineNr = 0;
static private boolean headerPrinted = false;
static private int lineNr = 0;
int start, end;
CountDownLatch countDown;
List<String> files;
Expand Down

0 comments on commit 917c22b

Please sign in to comment.