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.Current;
import _VisualDVM.Visual.UI;
import Common.Utils.Index;
@@ -41,7 +41,7 @@ public class SPF_GetGraphLoops extends SapforAnalysis {
Vector<String> done_programs = new Vector<>();
String[] splitedPackedGraph = packed.split("\\|");
for (int i = 0; i < splitedPackedGraph.length; i += 2) {
String name_ = CommonUtils.toW(splitedPackedGraph[i]);
String name_ = Utils_.toW(splitedPackedGraph[i]);
String[] packedLoopInfo = splitedPackedGraph[i + 1].split("#");
Index idx = new Index();
int nests_ = Integer.parseInt(packedLoopInfo[idx.Inc()]);