github-advanced-security[bot] commented on code in PR #819:
URL: https://github.com/apache/commons-io/pull/819#discussion_r2956578881
##########
src/main/java/org/apache/commons/io/input/BoundedReader.java:
##########
@@ -137,15 +118,21 @@
return len;
}
+ @Override
+ public long skip(long n) throws IOException {
+ charsRead += n;
Review Comment:
## Implicit narrowing conversion in compound assignment
Implicit cast of source type long to narrower destination type [int](1).
[Show more
details](https://github.com/apache/commons-io/security/code-scanning/145)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]