no message

This commit is contained in:
2024-10-14 15:19:13 +03:00
parent 8eef367bd4
commit 5e09fb44ea
634 changed files with 3751 additions and 3263 deletions

View File

@@ -1,11 +1,11 @@
package _VisualDVM.Passes.All;
import _VisualDVM.Current;
import Common.Passes.Pass;
import Common.Visual.Windows.Dialog.Text.ReadOnlyMultilineTextForm;
import _VisualDVM.Current;
import _VisualDVM.Global;
import _VisualDVM.GlobalData.Compiler.Compiler;
import _VisualDVM.GlobalData.Machine.MachineType;
import _VisualDVM.Passes.PassCode;
import Common.Passes.Pass;
public class ShowCompilerHelp extends Pass<String> {
Pass<String> subpass;
Compiler compiler;
@@ -40,9 +40,9 @@ public class ShowCompilerHelp extends Pass<String> {
subpass = null;
compiler.ResetHelp();
if (Global.mainModule.getMachine().type.equals(MachineType.Local)) {
subpass = Global.mainModule.getPass(PassCode.LocalSingleCommand);
subpass = Global.mainModule.getPass(PassCode.LocalSingleCommand);
} else {
subpass = Global.mainModule.getPass(PassCode.RemoteSingleCommand);
subpass = Global.mainModule.getPass(PassCode.RemoteSingleCommand);
}
if (subpass != null) {
if (compiler.helpLoaded = subpass.Do(compiler.getHelpCommand())) {