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:
@@ -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++;
|
||||
|
Reference in New Issue
Block a user