no message
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user