no message

This commit is contained in:
2024-10-25 00:50:19 +03:00
parent 9482abefcc
commit f2de9054d0
52 changed files with 101 additions and 85 deletions

View File

@@ -1,12 +1,11 @@
package _VisualDVM.Passes;
import Common.Passes.Pass;
import _VisualDVM.Current;
import _VisualDVM.Global;
import _VisualDVM.Repository.Component.Component;
public abstract class CurrentComponentPass extends Pass<Component> {
@Override
protected boolean canStart(Object... args) throws Exception {
if (Global.components.getUI().Check(Log)) {
if (Global.components.getUI().CheckCurrent(Log)) {
target = Global.components.getUI().getCurrent();
return true;
}