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:
parent
a384794ade
commit
d972822d63
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue