don't override wrappers
This commit is contained in:
@@ -74,7 +74,7 @@ public abstract class AbstractLoadingBar {
|
||||
}
|
||||
|
||||
|
||||
public long getPassedMinutes() {
|
||||
public final long getPassedMinutes() {
|
||||
return getPassedMinutes(false);
|
||||
}
|
||||
|
||||
@@ -84,32 +84,32 @@ public abstract class AbstractLoadingBar {
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBar() {
|
||||
public final void showLoadingBar() {
|
||||
realShowLoadingBar(false, false, 0);
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBar(boolean debug, boolean passedMinutesZero) {
|
||||
public final void showLoadingBar(boolean debug, boolean passedMinutesZero) {
|
||||
realShowLoadingBar(debug, passedMinutesZero, 100L);
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBarDebug() {
|
||||
public final void showLoadingBarDebug() {
|
||||
realShowLoadingBar(true, true, 100L);
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBarDebug(long millisWaiting) {
|
||||
public final void showLoadingBarDebug(long millisWaiting) {
|
||||
realShowLoadingBar(true, true, millisWaiting);
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBarDebug(boolean passedMinutesZero) {
|
||||
public final void showLoadingBarDebug(boolean passedMinutesZero) {
|
||||
realShowLoadingBar(true, passedMinutesZero, 100L);
|
||||
}
|
||||
|
||||
|
||||
public void showLoadingBarDebug(boolean passedMinutesZero, long millisWaiting) {
|
||||
public final void showLoadingBarDebug(boolean passedMinutesZero, long millisWaiting) {
|
||||
realShowLoadingBar(true, passedMinutesZero, millisWaiting);
|
||||
}
|
||||
|
||||
@@ -139,17 +139,17 @@ public abstract class AbstractLoadingBar {
|
||||
protected void afterShowLoadingBar() {}
|
||||
|
||||
|
||||
protected void waitUntilNextMinute() {
|
||||
protected final void waitUntilNextMinute() {
|
||||
waitUntilNextMinute(false, 0L);
|
||||
}
|
||||
|
||||
|
||||
protected void waitUntilNextMinuteDebug() {
|
||||
protected final void waitUntilNextMinuteDebug() {
|
||||
waitUntilNextMinute(true, 100L);
|
||||
}
|
||||
|
||||
|
||||
protected void waitUntilNextMinuteDebug(long millisWaiting) {
|
||||
protected final void waitUntilNextMinuteDebug(long millisWaiting) {
|
||||
waitUntilNextMinute(true, millisWaiting);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user