candidate = getSuspiciousMethodItemFromRoot(em, getAWTRoot());
}
if (candidate == null){
return null;
}
SuspiciousMethodMapping mapping = SuspiciousMethodMapping.getMappingFor(em, candidate.getMethodName());
if (mapping == null){
return candidate;
}
PrestimeCPUCCTNode maxOccurence = findLongestOccurenceOutsideAWT(mapping.getMappedMethodName());
if (maxOccurence == null){
return candidate;
}
MethodItem newCandidate = getSuspiciousMethodItemFromRoot(em, maxOccurence);
if (newCandidate == null){