Implement caching & fix minor bugs

This commit is contained in:
2023-04-16 13:07:58 +02:00
parent e19f780ff0
commit 686a9a0da1
7 changed files with 56 additions and 22 deletions

View File

@@ -116,7 +116,7 @@ public class ResultStatistic {
@Override
public String toString() {
return "ResultStatistic[" + "filesTotal=" + filesTotal +
return "ResultStatistic: " + "filesTotal=" + filesTotal +
", excluded=" + excluded +
", shouldChange=" + shouldChange +
" (failedChanging=" + failedChanging +
@@ -124,7 +124,6 @@ public class ResultStatistic {
"), noSuitableConfigFound=" + noSuitableConfigFound +
", alreadyFits=" + alreadyFits +
", failed=" + failed +
", runtime=" + formatTimer() +
']';
", runtime=" + formatTimer();
}
}