no message
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.CurrentAnchestor;
|
||||
import Common.Current_;
|
||||
import _VisualDVM.Current;
|
||||
import Common.Visual.Windows.Dialog.Text.ReadOnlyMultilineTextForm;
|
||||
import _VisualDVM.GlobalData.Compiler.Compiler;
|
||||
import _VisualDVM.GlobalData.Machine.MachineType;
|
||||
import Visual_DVM_2021.Passes.PassCode_2021;
|
||||
import Visual_DVM_2021.Passes.Pass_2021;
|
||||
public class ShowCompilerHelp extends Pass_2021<String> {
|
||||
Pass_2021<String> subpass;
|
||||
import Visual_DVM_2021.Passes.PassCode;
|
||||
import Visual_DVM_2021.Passes.Pass;
|
||||
public class ShowCompilerHelp extends Pass<String> {
|
||||
Pass<String> subpass;
|
||||
Compiler compiler;
|
||||
boolean needsShow = true;
|
||||
//-
|
||||
@@ -23,7 +23,7 @@ public class ShowCompilerHelp 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;
|
||||
@@ -40,9 +40,9 @@ public class ShowCompilerHelp extends Pass_2021<String> {
|
||||
subpass = null;
|
||||
compiler.ResetHelp();
|
||||
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.helpLoaded = subpass.Do(compiler.getHelpCommand())) {
|
||||
|
||||
Reference in New Issue
Block a user