Copilot commented on code in PR #402: URL: https://github.com/apache/commons-jexl/pull/402#discussion_r3311576247
########## src/main/java/org/apache/commons/jexl3/JexlException.java: ########## @@ -23,6 +23,8 @@ import java.lang.reflect.InvocationTargetException; import java.lang.reflect.UndeclaredThrowableException; import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; Review Comment: `java.util.Arrays` and `java.util.Collections` are imported but never used in this class. With the project’s Checkstyle configuration, unused imports can fail the build; please remove these imports (or use them if they were intended for the new stack-trace cleansing logic). -- 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]
