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;
|
||||
}
|
||||
|
||||
if (!printing) continue;
|
||||
if (count >= this.truncateLength) break;
|
||||
if (!printing) {
|
||||
continue;
|
||||
}
|
||||
if (count >= this.truncateLength) {
|
||||
break;
|
||||
}
|
||||
|
||||
consumer.accept(e);
|
||||
count++;
|
||||
|
Loading…
Reference in New Issue
Block a user