no message

This commit is contained in:
2024-10-22 20:18:50 +03:00
parent c160a20d06
commit cee06af384
8 changed files with 12 additions and 10 deletions

View File

@@ -48,6 +48,6 @@ public class InstallComponentFromFolder extends CurrentComponentPass {
}
@Override
protected void showDone() throws Exception {
Global.components.RefreshUpdatesStatus();
Global.components.refreshUpdatesStatus();
}
}

View File

@@ -120,7 +120,7 @@ public class PublishComponent extends ComponentsRepositoryPass<Component> {
}
@Override
protected void showDone() throws Exception {
Global.components.RefreshUpdatesStatus();
Global.components.refreshUpdatesStatus();
}
}

View File

@@ -58,6 +58,6 @@ public class ResurrectComponent extends CurrentComponentPass {
}
@Override
protected void showDone() throws Exception {
Global.components.RefreshUpdatesStatus();
Global.components.refreshUpdatesStatus();
}
}

View File

@@ -116,6 +116,6 @@ public class ResurrectComponentFromServer extends CurrentComponentPass {
}
@Override
protected void showDone() throws Exception {
Global.components.RefreshUpdatesStatus();
Global.components.refreshUpdatesStatus();
}
}

View File

@@ -43,6 +43,6 @@ public class UpdateComponent extends Pass<Component> {
}
@Override
protected void showDone() throws Exception {
Global.components.RefreshUpdatesStatus();
Global.components.refreshUpdatesStatus();
}
}