This is an automated email from the ASF dual-hosted git repository.

jshao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git


The following commit(s) were added to refs/heads/master by this push:
     new 788767e  [MINOR] Remove unused guava import
788767e is described below

commit 788767e4cced78f18798f73a651f3ec2d087f938
Author: jerryshao <jerrys...@tencent.com>
AuthorDate: Thu Aug 1 19:41:23 2019 +0800

    [MINOR] Remove unused guava import
    
    ## What changes were proposed in this pull request?
    
    PR #181 removed guava dependency in LivyServer, but it still left unused 
guava import. Here in this minor fix, removed this unused import.
    
    ## How was this patch tested?
    
    Existing UTs.
    
    Author: jerryshao <jerrys...@tencent.com>
    
    Closes #191 from jerryshao/remove-guava-minor.
---
 server/src/main/scala/org/apache/livy/utils/LineBufferedStream.scala | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/server/src/main/scala/org/apache/livy/utils/LineBufferedStream.scala 
b/server/src/main/scala/org/apache/livy/utils/LineBufferedStream.scala
index c792b61..69e8d19 100644
--- a/server/src/main/scala/org/apache/livy/utils/LineBufferedStream.scala
+++ b/server/src/main/scala/org/apache/livy/utils/LineBufferedStream.scala
@@ -23,8 +23,6 @@ import java.util.concurrent.locks.ReentrantLock
 
 import scala.io.Source
 
-import com.google.common.collect.EvictingQueue
-
 import org.apache.livy.Logging
 
 class CircularQueue[T](var capacity: Int) extends util.LinkedList[T] {

Reply via email to