Avoid PMD warning.
This commit is contained in:
@ -44,7 +44,7 @@ public class ASTInput extends net.sourceforge.pmd.lang.plsql.ast.AbstractPLSQLNo
|
|||||||
@param last Last line of the exlucded line range (1-based).
|
@param last Last line of the exlucded line range (1-based).
|
||||||
*/
|
*/
|
||||||
void addExcludedLineRange(int first, int last) {
|
void addExcludedLineRange(int first, int last) {
|
||||||
excludedLinesCount += (last - first + 1);
|
excludedLinesCount += last - first + 1;
|
||||||
excludedRangesCount += 1;
|
excludedRangesCount += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user