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 _VisualDVM.ProjectData.Files.DBProjectFile;
import _VisualDVM.ProjectData.Files.FileType;
@@ -39,13 +39,13 @@ public class PrepareForModulesAssembly extends Transformation {
protected void body() throws Exception {
File total = Paths.get(target.last_version.Home.getAbsolutePath(), "total.for").toFile();
while (total.exists()) {
total = Paths.get(target.last_version.Home.getAbsolutePath(), CommonUtils.getDateName("total") + ".for").toFile();
total = Paths.get(target.last_version.Home.getAbsolutePath(), Utils_.getDateName("total") + ".for").toFile();
Thread.sleep(1000);
}
//--создать
Vector<String> total_lines = new Vector<>();
for (String name : target.files_order) {
total_lines.add(" include " + CommonUtils.Quotes(CommonUtils.toU(name)));
total_lines.add(" include " + Utils_.Quotes(Utils_.toU(name)));
}
FileUtils.writeLines(total, total_lines, false);
//-------------------------------