Удаление спф директив
This commit is contained in:
2025-03-20 18:14:41 +03:00
parent 0b5f8c6ec7
commit 78ee5bc428
9 changed files with 20 additions and 26 deletions

View File

@@ -37,7 +37,7 @@ public class SPF_GetGraphLoops extends SapforAnalysis {
}
@Override
protected void unpack(String packed) throws Exception {
System.out.println(Utils_.Brackets(packed));
//System.out.println(Utils_.Brackets(packed));
Vector<String> done_programs = new Vector<>();
String[] splitedPackedGraph = packed.split("\\|");
for (int i = 0; i < splitedPackedGraph.length; i += 2) {

View File

@@ -0,0 +1,4 @@
package _VisualDVM.Passes.All;
import _VisualDVM.Passes.Sapfor.SapforTransformation;
public class SPF_RemoveSpfDirectives extends SapforTransformation {
}