Use lombok annotation instead of get/set

This commit is contained in:
Laurent Clouet
2019-08-07 22:17:59 +02:00
parent 9b36dcf9b5
commit 9f1f509bb6
12 changed files with 123 additions and 420 deletions

View File

@@ -89,7 +89,7 @@ public class Log {
if (instance == null) {
boolean print = false;
if (config != null) {
print = config.getPrintLog();
print = config.isPrintLog();
}
instance = new Log(print);
}