jmark99 commented on a change in pull request #2558:
URL: https://github.com/apache/accumulo/pull/2558#discussion_r824857754
##########
File path:
core/src/main/java/org/apache/accumulo/core/client/summary/CounterSummary.java
##########
@@ -54,7 +54,8 @@ public CounterSummary(Summary summary, boolean checkType) {
if (checkType) {
String className = summary.getSummarizerConfiguration().getClassName();
try {
-
getClass().getClassLoader().loadClass(className).asSubclass(CountingSummarizer.class);
+ var unusedRetVal =
+
getClass().getClassLoader().loadClass(className).asSubclass(CountingSummarizer.class);
Review comment:
Added log.trace message to make use of unused return value from
loadclass method.
--
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]