no message

This commit is contained in:
2024-10-07 14:22:52 +03:00
parent 6b1576461d
commit 61fc37b574
173 changed files with 960 additions and 1526 deletions

View File

@@ -1,4 +1,5 @@
package Visual_DVM_2021.Passes.All;
import Common.Utils.CommonUtils;
import Common_old.Current;
import _VisualDVM.Global;
import Common_old.UI.UI;
@@ -72,7 +73,7 @@ public class SPF_ParseFilesWithOrder extends SapforAnalysis {
case HasNotes:
case HasWarnings:
if (f.isActiveProgram())
projLines.add(Utils.toU(f.getDepFile().getAbsolutePath()));
projLines.add(CommonUtils.toU(f.getDepFile().getAbsolutePath()));
goodCount++;
break;
case HasErrors:
@@ -94,7 +95,7 @@ public class SPF_ParseFilesWithOrder extends SapforAnalysis {
}
if (goodCount == 0) {
Log.Writeln_("Не найдено ни одного успешно проанализированного файла на языке проекта :" +
Utils.DQuotes(target.languageName.getDescription()));
CommonUtils.DQuotes(target.languageName.getDescription()));
return false;
}
return true;
@@ -104,7 +105,7 @@ public class SPF_ParseFilesWithOrder extends SapforAnalysis {
@Override
protected void unpack(String packed) throws Exception {
for (String fileName_ : packed.split("\\|"))
target.files_order.add(Utils.toW(fileName_));
target.files_order.add(CommonUtils.toW(fileName_));
}
@Override
protected void performPreparation() throws Exception {
@@ -125,7 +126,7 @@ public class SPF_ParseFilesWithOrder extends SapforAnalysis {
//---------------------------
for (DBProjectFile f : target.db.files.Data.values()) {
if (f.isActiveProgram()) {
projLines.add(Utils.toU(f.file.getAbsolutePath()));
projLines.add(CommonUtils.toU(f.file.getAbsolutePath()));
f.CreateParserOptions();
}
}