lwz9103 commented on code in PR #8464:
URL: https://github.com/apache/incubator-gluten/pull/8464#discussion_r1908100185


##########
gluten-core/src/main/java/org/apache/gluten/utils/ResourceUtil.java:
##########
@@ -47,12 +47,24 @@ public class ResourceUtil {
    */
   public static List<String> getResources(final Pattern pattern) {
     final List<String> buffer = new ArrayList<>();
-    final String classPath = System.getProperty("java.class.path");
+    String classPath = System.getProperty("java.class.path");
+    processClassPathElements(classPath, pattern, buffer);
+    if (buffer.isEmpty()) {

Review Comment:
   move this to processClassPathElements 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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to