no message

This commit is contained in:
2024-10-17 20:44:11 +03:00
parent 7b56eae371
commit debc1a6cae
9 changed files with 42 additions and 27 deletions

View File

@@ -37,6 +37,6 @@ public class DeleteServerObject<S extends RepositoryServer, D extends DBObject>
}
@Override
protected void showDone() throws Exception {
getDb().getTable(d).ui_.Show();
getDb().getTable(d).getUI().Show();
}
}

View File

@@ -26,6 +26,6 @@ public class EditServerObject<S extends RepositoryServer, D extends DBObject> ex
@Override
protected void showDone() throws Exception {
VisualCaches.RefreshCache(target);
getDb().getTable(d).ui_.Show(target.getPK());
getDb().getTable(d).getUI().Show(target.getPK());
}
}

View File

@@ -41,6 +41,6 @@ public class PublishServerObject<S extends RepositoryServer, D extends DBObject>
@Override
protected void showDone() throws Exception {
super.showDone();
getDb().getTable(d).ui_.Show(pk);
getDb().getTable(d).getUI().Show(pk);
}
}