don't override wrappers

This commit is contained in:
2025-08-26 10:18:45 +02:00
parent a664f42f97
commit f52eb4755a

View File

@@ -74,7 +74,7 @@ public abstract class AbstractLoadingBar {
} }
public long getPassedMinutes() { public final long getPassedMinutes() {
return getPassedMinutes(false); return getPassedMinutes(false);
} }
@@ -84,32 +84,32 @@ public abstract class AbstractLoadingBar {
} }
public void showLoadingBar() { public final void showLoadingBar() {
realShowLoadingBar(false, false, 0); realShowLoadingBar(false, false, 0);
} }
public void showLoadingBar(boolean debug, boolean passedMinutesZero) { public final void showLoadingBar(boolean debug, boolean passedMinutesZero) {
realShowLoadingBar(debug, passedMinutesZero, 100L); realShowLoadingBar(debug, passedMinutesZero, 100L);
} }
public void showLoadingBarDebug() { public final void showLoadingBarDebug() {
realShowLoadingBar(true, true, 100L); realShowLoadingBar(true, true, 100L);
} }
public void showLoadingBarDebug(long millisWaiting) { public final void showLoadingBarDebug(long millisWaiting) {
realShowLoadingBar(true, true, millisWaiting); realShowLoadingBar(true, true, millisWaiting);
} }
public void showLoadingBarDebug(boolean passedMinutesZero) { public final void showLoadingBarDebug(boolean passedMinutesZero) {
realShowLoadingBar(true, passedMinutesZero, 100L); realShowLoadingBar(true, passedMinutesZero, 100L);
} }
public void showLoadingBarDebug(boolean passedMinutesZero, long millisWaiting) { public final void showLoadingBarDebug(boolean passedMinutesZero, long millisWaiting) {
realShowLoadingBar(true, passedMinutesZero, millisWaiting); realShowLoadingBar(true, passedMinutesZero, millisWaiting);
} }
@@ -139,17 +139,17 @@ public abstract class AbstractLoadingBar {
protected void afterShowLoadingBar() {} protected void afterShowLoadingBar() {}
protected void waitUntilNextMinute() { protected final void waitUntilNextMinute() {
waitUntilNextMinute(false, 0L); waitUntilNextMinute(false, 0L);
} }
protected void waitUntilNextMinuteDebug() { protected final void waitUntilNextMinuteDebug() {
waitUntilNextMinute(true, 100L); waitUntilNextMinute(true, 100L);
} }
protected void waitUntilNextMinuteDebug(long millisWaiting) { protected final void waitUntilNextMinuteDebug(long millisWaiting) {
waitUntilNextMinute(true, millisWaiting); waitUntilNextMinute(true, millisWaiting);
} }