mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +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
|
||||
public final void checkCanceled() {
|
||||
public void checkCanceled() {
|
||||
((CoreProgressManager)ProgressManager.getInstance()).runCheckCanceledHooks(this);
|
||||
}
|
||||
|
||||
@@ -40,12 +40,12 @@ final class NonCancelableIndicator implements StandardProgressIndicator {
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void cancel() {
|
||||
public void cancel() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public final boolean isCanceled() {
|
||||
public boolean isCanceled() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user