Remove unused assignment. #1555

Fixes `UnusedAssignment` inspection violations.

Description:
>This inspection points out the cases where a variable value is never used after its assignment.
This commit is contained in:
Michal Kordas 2015-08-27 22:56:27 +02:00 committed by Roman Ivanov
parent a384794ade
commit d972822d63
1 changed files with 1 additions and 1 deletions

View File

@ -746,7 +746,7 @@ public class JavadocMethodCheck extends AbstractTypeAwareCheck {
tagIt.remove();
boolean found = false;
boolean found;
final String arg1 = tag.getFirstArg();
found = removeMatchingParam(params, arg1);