clean up: remove final modifier from methods of final class

GitOrigin-RevId: cd794e324b8fba980e9350c48c7b2b9a7515ec7a
This commit is contained in:
Daniil Ovchinnikov
2024-01-31 14:50:50 +01:00
committed by intellij-monorepo-bot
parent 273fff97e9
commit 9a6807daab

View File

@@ -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;
}