if (!preciseMatch) {
matchBugs(fuzzyBugPatternMatcher, origCollection, newCollection);
}
if (!noPackageMoves) {
VersionInsensitiveBugComparator movedBugComparator = new VersionInsensitiveBugComparator();
MovedClassMap movedClassMap = new MovedClassMap(origCollection, newCollection).execute();
if (!movedClassMap.isEmpty()) {
movedBugComparator.setClassNameRewriter(movedClassMap);
movedBugComparator.setComparePriorities(precisePriorityMatch);
matchBugs(movedBugComparator, origCollection, newCollection);
if (!preciseMatch) {
movedBugComparator.setExactBugPatternMatch(false);
matchBugs(movedBugComparator, origCollection, newCollection);
}
}
/*
if (false) {