no message
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.CurrentAnchestor;
|
||||
import Common.Current_;
|
||||
import Common.Utils.CommonUtils;
|
||||
import _VisualDVM.Current;
|
||||
import Common.Visual.Windows.Dialog.Text.ReadOnlyMultilineTextForm;
|
||||
import _VisualDVM.GlobalData.Compiler.Compiler;
|
||||
import _VisualDVM.GlobalData.GlobalDatabase;
|
||||
import _VisualDVM.GlobalData.Machine.MachineType;
|
||||
import Visual_DVM_2021.Passes.PassCode_2021;
|
||||
import Visual_DVM_2021.Passes.Pass_2021;
|
||||
public class ShowCompilerVersion extends Pass_2021<String> {
|
||||
Pass_2021<String> subpass;
|
||||
import Visual_DVM_2021.Passes.PassCode;
|
||||
import Visual_DVM_2021.Passes.Pass;
|
||||
public class ShowCompilerVersion extends Pass<String> {
|
||||
Pass<String> subpass;
|
||||
boolean needsShow = true;
|
||||
Compiler compiler;
|
||||
//-
|
||||
@@ -25,7 +25,7 @@ public class ShowCompilerVersion extends Pass_2021<String> {
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
target = null;
|
||||
if (args.length == 0) {
|
||||
if (CurrentAnchestor.Check(Log, Current.Compiler)) {
|
||||
if (Current_.Check(Log, Current.Compiler)) {
|
||||
compiler = Current.getCompiler();
|
||||
needsShow = true;
|
||||
return true;
|
||||
@@ -42,9 +42,9 @@ public class ShowCompilerVersion extends Pass_2021<String> {
|
||||
subpass = null;
|
||||
compiler.ResetVersion();
|
||||
if (Current.getMachine().type.equals(MachineType.Local)) {
|
||||
subpass = passes.get(PassCode_2021.LocalSingleCommand);
|
||||
subpass = passes.get(PassCode.LocalSingleCommand);
|
||||
} else {
|
||||
subpass = passes.get(PassCode_2021.RemoteSingleCommand);
|
||||
subpass = passes.get(PassCode.RemoteSingleCommand);
|
||||
}
|
||||
if (subpass != null) {
|
||||
if (compiler.versionLoaded = subpass.Do(compiler.getVersionCommand())) {
|
||||
|
||||
Reference in New Issue
Block a user