[Minor] GenericReport: Field 'counter' is accessed in both synchronized and unsynchronized contexts

This commit is contained in:
Robert von Burg 2023-04-05 21:34:29 +02:00
parent 17dd0e68d8
commit d6ab8119a7
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ public class GenericReport extends ReportPolicy {
}
@Override
public long getCounter() {
public synchronized long getCounter() {
return this.counter;
}