mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
clean up: remove final modifier from methods of final class
GitOrigin-RevId: cd794e324b8fba980e9350c48c7b2b9a7515ec7a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
273fff97e9
commit
9a6807daab
@@ -20,7 +20,7 @@ final class NonCancelableIndicator implements StandardProgressIndicator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void checkCanceled() {
|
public void checkCanceled() {
|
||||||
((CoreProgressManager)ProgressManager.getInstance()).runCheckCanceledHooks(this);
|
((CoreProgressManager)ProgressManager.getInstance()).runCheckCanceledHooks(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,12 +40,12 @@ final class NonCancelableIndicator implements StandardProgressIndicator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void cancel() {
|
public void cancel() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final boolean isCanceled() {
|
public boolean isCanceled() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user