id = -1;
}
List records = dao.getRankList();
Iterator it = records.iterator();
while (it.hasNext()) {
RankInfoDTO curr = (RankInfoDTO) it.next();
if (curr.getCount() == count && curr.getId() != id) {
ActionErrors errors = new ActionErrors();
errors.add(ActionErrors.GLOBAL_ERROR, new ActionError(
"errors.ERR23", rForm.getCount()));
saveErrors(request, errors);
return mapping.getInputForward();