lmccay commented on code in PR #348: URL: https://github.com/apache/incubator-livy/pull/348#discussion_r1057453119
########## client-http/src/main/java/org/apache/livy/client/http/HttpClient.java: ########## @@ -17,23 +17,20 @@ package org.apache.livy.client.http; +import org.apache.livy.Job; +import org.apache.livy.JobHandle; +import org.apache.livy.LivyClient; +import org.apache.livy.client.common.Serializer; + import java.io.File; import java.net.URI; import java.nio.ByteBuffer; import java.util.HashMap; import java.util.Map; -import java.util.concurrent.Callable; -import java.util.concurrent.Executors; -import java.util.concurrent.Future; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ThreadFactory; +import java.util.concurrent.*; Review Comment: Please do not use wildcard imports to pull in everything in a package. -- 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]
