Updated the debug logger to use proper string formatting syntax. This ensures compatibility and avoids runtime errors. Signed-off-by: Minecon724 <git@m724.eu>
This commit is contained in:
parent
cf654fcb42
commit
684e31bf07
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ public class TweaksPlugin extends MStatsPlugin {
|
||||||
mStats(1);
|
mStats(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
DebugLogger.fine("Took %.3f milliseconds".formatted((System.nanoTime() - start) / 1000000.0));
|
DebugLogger.fine("Took %.3f milliseconds", (System.nanoTime() - start) / 1000000.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getTargetVersion() {
|
private String getTargetVersion() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue