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

boaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 9e8f31fb6adb4cc979c659214332ef37870d4ce0
Author: Timothy Farkas <[email protected]>
AuthorDate: Tue May 8 13:55:40 2018 -0700

    DRILL-6386: Disallow unused imports and star imports.
---
 src/main/resources/checkstyle-config.xml | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/main/resources/checkstyle-config.xml 
b/src/main/resources/checkstyle-config.xml
index 5addf38..88672f2 100644
--- a/src/main/resources/checkstyle-config.xml
+++ b/src/main/resources/checkstyle-config.xml
@@ -27,16 +27,13 @@
 <module name="Checker">
 
   <module name="TreeWalker">
-
+    <module name="UnusedImports"/>
     <module name="IllegalImport">
       <!-- For "org.apache.commons.lang.*" classes use the corresponding class 
from "org.apache.commons.lang3.*" -->
       <property name="illegalPkgs" 
value="com.google.hive12,com.beust.jcommander.internal,jersey.repackaged,org.apache.commons.lang"/>
     </module>
 
-    <module name="AvoidStarImport">
-      <property name="allowStaticMemberImports" value="true"/>
-    </module>
-
+    <module name="AvoidStarImport"/>
     <module name="NeedBraces"/>
 
   </module>

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to