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,5 +1,5 @@
package Visual_DVM_2021.Passes.All;
import Common.Utils.CommonUtils;
import Common.Utils.Utils_;
import _VisualDVM.Global;
import Common.Visual.Windows.Dialog.Text.ComboTextDialog;
import _VisualDVM.Utils;
@@ -47,7 +47,7 @@ public class CombineFiles extends Transformation {
@Override
protected void body() throws Exception {
result = Paths.get(target.last_version.Home.getAbsolutePath(),
CommonUtils.isWindows() ? fd.Result : CommonUtils.toU(fd.Result)).toFile();
Utils_.isWindows() ? fd.Result : Utils_.toU(fd.Result)).toFile();
//-----------------------
//получить список хедеров.
//-----------------------
@@ -56,13 +56,13 @@ public class CombineFiles extends Transformation {
//-----------------------------
result_lines.add("!-Found " + target.allIncludes.size() + " headers");
for (String name : target.allIncludes.keySet()) {
all_includes.add(" include " + CommonUtils.Quotes(CommonUtils.toU(name)));
result_lines.add("! include " + CommonUtils.Quotes(CommonUtils.toU(name)));
all_includes.add(" include " + Utils_.Quotes(Utils_.toU(name)));
result_lines.add("! include " + Utils_.Quotes(Utils_.toU(name)));
}
result_lines.add("!-Collapse-" + target.files_order.size() + " files");
int i = 1;
for (String name : target.files_order) {
result_lines.add("! -- " + i + ". " + CommonUtils.Brackets(name));
result_lines.add("! -- " + i + ". " + Utils_.Brackets(name));
++i;
}
result_lines.add("!--------------------");
@@ -76,8 +76,8 @@ public class CombineFiles extends Transformation {
String header = Utils.extractHeaderName(line);
if (header != null) {
if (file.relativeHeaders.containsKey(header))
result_lines.add(" include " + CommonUtils.Quotes(
CommonUtils.toU(
result_lines.add(" include " + Utils_.Quotes(
Utils_.toU(
file.relativeHeaders.get(header).name)));
} else
result_lines.add(line);