turcsanyip commented on code in PR #7588: URL: https://github.com/apache/nifi/pull/7588#discussion_r1299436694
########## nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/flow/resource/hadoop/HDFSExternalResourceProvider.java: ########## @@ -16,6 +16,18 @@ */ package org.apache.nifi.flow.resource.hadoop; +import java.io.IOException; +import java.io.InputStream; +import java.net.InetSocketAddress; +import java.net.Socket; +import java.net.URI; +import java.security.PrivilegedExceptionAction; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; +import java.util.Objects; +import java.util.stream.Collectors; +import javax.net.SocketFactory; Review Comment: `HDFSExternalResourceProvider` looks good now. Could you please apply the same import formatting in all files in the PR? -- 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]
