Initialize methods after loading classgroup too, I dont know if other things are broken elsewhere. Making the method graphs work makes many more frames. Might be worth processing methods one at a time and then doing the comparisons. And maybe elsewhere that doesn't need the graph will not include all frames, or something.

This commit is contained in:
Adam
2015-11-15 00:00:27 -05:00
parent 7e5b99fe4f
commit 7b94552825
2 changed files with 8 additions and 0 deletions

View File

@@ -44,6 +44,12 @@ public class ClassGroup
return c;
return null;
}
public void initialize()
{
buildClassGraph();
lookup();
}
public void buildClassGraph()
{

View File

@@ -35,6 +35,8 @@ public class JarUtil
}
}
group.initialize();
return group;
}