no message
This commit is contained in:
@@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user