ctubbsii commented on code in PR #77:
URL:
https://github.com/apache/accumulo-classloaders/pull/77#discussion_r2849296655
##########
modules/caching-classloader/src/main/java/org/apache/accumulo/classloader/ccl/LocalStore.java:
##########
@@ -206,7 +206,6 @@ public void storeContext(final Manifest manifest) {
LOG.trace("Skipped resource {} while another process or thread is
downloading it",
resource.getLocation());
waitingOnOtherDownloadsCount++;
- continue;
Review Comment:
The continue was for the for loop, which ends immediately after the
continue, not the do-while loop that has the wait. So, errorprone correctly
flagged it as redundant.
--
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]