}
}
public boolean repeatAnalysis(AJCTree tree) {
log.info("Repeat analysis for: {}", tree);
CallDetector detector = new CallDetector();
detector.visitTree(tree);
if (detector.containsCall) {
log.info("Shortcut aborted :(");
initialAnalysis();
return false;