We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b52daef commit 2225f0fCopy full SHA for 2225f0f
log-utils/src/main/java/net/minecraftforge/util/logging/Log.java
@@ -58,8 +58,8 @@ private static PrintStream streamOf(Level level, PrintStream delegate) {
58
private static byte indent = 0;
59
60
/** Pushes the current indentation level up by one. */
61
- public static int push() {
62
- return ++indent;
+ public static byte push() {
+ return indent++;
63
}
64
65
/**
@@ -72,7 +72,7 @@ public static void pop() {
72
throw new IllegalStateException("Cannot pop logger below 0");
73
74
75
- public static void setIndent(byte indent) {
+ public static void pop(byte indent) {
76
if (indent < 0)
77
78
0 commit comments