no message

This commit is contained in:
2024-10-09 23:37:58 +03:00
parent eb278676cc
commit d1ffab1e70
299 changed files with 1844 additions and 1539 deletions

View File

@@ -1,5 +1,5 @@
package Visual_DVM_2021.Passes;
import Common.CurrentAnchestor;
import Common.Current_;
import _VisualDVM.Current;
import _VisualDVM.Global;
import _VisualDVM.ServerObjectsCache.ConfigurationCache;
@@ -9,7 +9,7 @@ import _VisualDVM.TestingSystem.Common.Group.Group;
import _VisualDVM.TestingSystem.Common.Test.Test;
import java.util.Vector;
public abstract class ShowCurrentConfigurationTests<C extends Configuration> extends Pass_2021<C> {
public abstract class ShowCurrentConfigurationTests<C extends Configuration> extends Pass<C> {
@Override
public String getIconPath() {
return "/icons/ShowPassword.png";
@@ -22,8 +22,8 @@ public abstract class ShowCurrentConfigurationTests<C extends Configuration> ext
@Override
protected boolean canStart(Object... args) throws Exception {
target = null;
if (CurrentAnchestor.Check(Log, currentName())) {
target = (C) CurrentAnchestor.get(currentName());
if (Current_.Check(Log, currentName())) {
target = (C) Current_.get(currentName());
return true;
}
return false;