no message

This commit is contained in:
2024-10-11 00:00:30 +03:00
parent a11b7711f7
commit f317ab1aa1
341 changed files with 1866 additions and 1688 deletions

View File

@@ -1,6 +1,6 @@
package Visual_DVM_2021.Passes.All;
import Common.Current_;
import Common.Utils.CommonUtils;
import Common.Utils.Utils_;
import _VisualDVM.Current;
import Common.Visual.Windows.Dialog.Text.ReadOnlyMultilineTextForm;
import _VisualDVM.Utils;
@@ -38,7 +38,7 @@ public class ShowComponentChangesLog extends ComponentsRepositoryPass<Component>
@Override
protected void ServerAction() throws Exception {
Command(new ServerExchangeUnit_2021(ServerCode.GetComponentChangesLog, target.getComponentType().toString()));
CommonUtils.bytesToFile((byte[]) response.object, res);
Utils_.bytesToFile((byte[]) response.object, res);
}
@Override
protected boolean validate() {
@@ -52,7 +52,7 @@ public class ShowComponentChangesLog extends ComponentsRepositoryPass<Component>
for (int i = lines.size() - 1; i >= 0; i--)
res.add(lines.get(i));
ff.ShowDialog("Журнал изменений компонента " +
CommonUtils.Brackets(target.getComponentType().getDescription()),
Utils_.Brackets(target.getComponentType().getDescription()),
String.join("\n", res)
);
}