public void setBugCollection(BugCollection bugCollection) {
this.bugCollection = bugCollection;
}
public ObfuscateBugs execute() {
ProjectPackagePrefixes foo = new ProjectPackagePrefixes();
for (BugInstance b : bugCollection.getCollection()) {
foo.countBug(b);
}
foo.report();
return this;
}