jmark99 commented on a change in pull request #2558:
URL: https://github.com/apache/accumulo/pull/2558#discussion_r824902199
##########
File path: test/src/main/java/org/apache/accumulo/test/SampleIT.java
##########
@@ -490,7 +490,7 @@ private void assertSampleNotPresent(SamplerConfiguration
sc, ScannerBase... scan
scanner.clearSamplerConfiguration();
for (Entry<Key,Value> entry : scanner) {
- entry.getKey();
+ var unusedRetVal = entry.getKey();
Review comment:
Wrapped calls to entry.getKey() with assertNotNull in SampleIT,
TImeoutIT, and ServerSideErrorIT.
--
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]