risdenk commented on code in PR #1996: URL: https://github.com/apache/solr/pull/1996#discussion_r1353221776
########## solr/core/src/java/org/apache/solr/handler/export/ExportWriter.java: ########## @@ -27,9 +27,14 @@ import java.io.PrintWriter; import java.lang.invoke.MethodHandles; import java.nio.charset.StandardCharsets; +import java.util.ArrayList; +import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Set; import java.util.TreeSet; +import org.apache.commons.io.FilenameUtils; Review Comment: Ideally we don't pull in more dependencies than needed. I think its weird to use `FilenameUtils` when we are basically just looking at simple globs. There was a push to limit dependencies where possible and commons-io was one that just kept getting used all over the place. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
