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