CalvinKirs commented on code in PR #2301:
URL:
https://github.com/apache/incubator-seatunnel/pull/2301#discussion_r935156674
##########
seatunnel-engine/seatunnel-engine-client/src/main/java/org/apache/seatunnel/engine/client/ConnectorInstanceLoader.java:
##########
@@ -31,16 +31,24 @@
import org.apache.seatunnel.shade.com.typesafe.config.Config;
+import com.google.common.collect.Lists;
+import org.apache.commons.lang3.tuple.ImmutablePair;
+
+import java.net.URL;
+import java.util.List;
+
import scala.Serializable;
Review Comment:
Utility class should not be instantiated, it's better to add
```
private ConnectorInstanceLoader() {
throw new IllegalStateException("Utility class");
}
```
--
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]