From 46725901c6373f18d055b00ce01c2322dee178aa Mon Sep 17 00:00:00 2001 From: MyLanPangzi <1251723871@qq.com> Date: Wed, 10 Mar 2021 11:39:12 +0800 Subject: [PATCH] [KYUUBI #413] [MINOR]: remove unused class import ![MyLanPangzi](https://badgen.net/badge/Hello/MyLanPangzi/green) [![Closes #413](https://badgen.net/badge/Preview/Closes%20%23413/blue)](https://github.com/yaooqinn/kyuubi/pull/413) ![1](https://badgen.net/badge/%2B/1/red) ![1](https://badgen.net/badge/-/1/green) ![1](https://badgen.net/badge/commits/1/yellow) ![Target Issue](https://badgen.net/badge/Missing/Target%20Issue/ff0000) ![Test Plan](https://badgen.net/badge/Missing/Test%20Plan/ff0000) [❨?❩](https://pullrequestbadge.com/?utm_medium=github&utm_source=yaooqinn&utm_campaign=badge_info) ### _Why are the changes needed?_ remove unused class import ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request Closes #413 from MyLanPangzi/master. dc6f65a [hiscat] [MINOR]: remove unused class import Lead-authored-by: MyLanPangzi <1251723871@qq.com> Co-authored-by: hiscat <46845236+MyLanPangzi@users.noreply.github.com> Signed-off-by: Cheng Pan <379377944@qq.com> (cherry picked from commit 8f44d0b4cf84593892fb1f8d59ae0fd9f9493c5e) Signed-off-by: Cheng Pan <379377944@qq.com> --- .../src/main/scala/org/apache/kyuubi/engine/ProcBuilder.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyuubi-main/src/main/scala/org/apache/kyuubi/engine/ProcBuilder.scala b/kyuubi-main/src/main/scala/org/apache/kyuubi/engine/ProcBuilder.scala index c186633f6..6e94131f9 100644 --- a/kyuubi-main/src/main/scala/org/apache/kyuubi/engine/ProcBuilder.scala +++ b/kyuubi-main/src/main/scala/org/apache/kyuubi/engine/ProcBuilder.scala @@ -17,7 +17,7 @@ package org.apache.kyuubi.engine -import java.io.{File, FilenameFilter, IOException} +import java.io.{File, IOException} import java.nio.charset.StandardCharsets import java.nio.file.{Files, Path}