fix unused methods again

This commit is contained in:
Adam
2015-06-28 20:45:01 -04:00
parent b0f5f33e89
commit 91f189add1
6 changed files with 33 additions and 9 deletions

View File

@@ -11,9 +11,11 @@ public class UnusedMethods
{
public void run(ClassGroup group)
{
group.buildClassGraph();
Execution execution = new Execution(group);
execution.populateInitialMethods();
execution.run();
execution.run();
int i = 0;
for (ClassFile cf : group.getClasses())