1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-24 21:11:41 +02:00

Cleanup in StackTracePrinter

This commit is contained in:
Luck
2019-11-23 17:43:56 +00:00
parent 94418d3648
commit 2316b6806e

View File

@@ -57,8 +57,12 @@ public final class StackTracePrinter {
printing = true;
}
if (!printing) continue;
if (count >= this.truncateLength) break;
if (!printing) {
continue;
}
if (count >= this.truncateLength) {
break;
}
consumer.accept(e);
count++;