Lifu12 commented on code in PR #5265:
URL: https://github.com/apache/seatunnel/pull/5265#discussion_r1306396276
##########
seatunnel-common/src/main/java/org/apache/seatunnel/common/config/Common.java:
##########
@@ -162,6 +166,21 @@ public static Set<Path> getThirdPartyJars(String paths) {
.collect(Collectors.toSet());
}
+ public static Set<URL> getThirdPartyJarsURL(String paths) {
+ return Arrays.stream(paths.split(";"))
+ .filter(s -> !"".equals(s))
Review Comment:
已经修改
##########
seatunnel-common/src/main/java/org/apache/seatunnel/common/config/Common.java:
##########
@@ -162,6 +166,21 @@ public static Set<Path> getThirdPartyJars(String paths) {
.collect(Collectors.toSet());
}
+ public static Set<URL> getThirdPartyJarsURL(String paths) {
+ return Arrays.stream(paths.split(";"))
+ .filter(s -> !"".equals(s))
Review Comment:
已经修改
--
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]