mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2025-01-01 14:07:56 +01:00
Cleanup in StackTracePrinter
This commit is contained in:
parent
94418d3648
commit
2316b6806e
@ -57,8 +57,12 @@ public final class StackTracePrinter {
|
|||||||
printing = true;
|
printing = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!printing) continue;
|
if (!printing) {
|
||||||
if (count >= this.truncateLength) break;
|
continue;
|
||||||
|
}
|
||||||
|
if (count >= this.truncateLength) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
consumer.accept(e);
|
consumer.accept(e);
|
||||||
count++;
|
count++;
|
||||||
|
Loading…
Reference in New Issue
Block a user