if (mayRedeclareVariable) {
String msg = "No new variables declared";
if (nonBlankIdCount == 0) {
PsiElement start = identifiers[0].getParent();
ctx.addProblem(start, start, msg, ProblemHighlightType.GENERIC_ERROR, new DeleteStmtFix());
} else if (redeclaredIds.size() == nonBlankIdCount) {
PsiElement start = identifiers[0];
PsiElement end = identifiers[identifiers.length - 1];
ctx.addProblem(start, end, msg, ProblemHighlightType.GENERIC_ERROR, new ConvertToAssignmentFix());
}