// Check if the entry is a suspected, unresolved, duplicate.
// This status
// is indicated by the entry's group hit status:
if (entry.isGroupHit()) {
CheckBoxMessage cbm = new CheckBoxMessage(
Globals
.lang("There are possible duplicates (marked with a 'D' icon) that haven't been resolved. Continue?"),
Globals.lang("Disable this confirmation dialog"), false);
int answer = JOptionPane.showConfirmDialog(ImportInspectionDialog.this,
cbm, Globals.lang("Duplicates found"), JOptionPane.YES_NO_OPTION);
if (cbm.isSelected())
Globals.prefs.putBoolean("warnAboutDuplicatesInInspection", false);
if (answer == JOptionPane.NO_OPTION)
return;
break;
}