You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2016/12/19 17:24:11 UTC

mina-sshd git commit: Added 'AvoidStaticImport' checkstyle configuration

Repository: mina-sshd
Updated Branches:
  refs/heads/master 331bdfc9d -> 4f0f4dc9b


Added 'AvoidStaticImport' checkstyle configuration


Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/4f0f4dc9
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/4f0f4dc9
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/4f0f4dc9

Branch: refs/heads/master
Commit: 4f0f4dc9bcbb96a6d1d8773979a73f89729452dc
Parents: 331bdfc
Author: Lyor Goldstein <ly...@gmail.com>
Authored: Mon Dec 19 19:24:27 2016 +0200
Committer: Lyor Goldstein <ly...@gmail.com>
Committed: Mon Dec 19 19:24:27 2016 +0200

----------------------------------------------------------------------
 sshd-checkstyle.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/4f0f4dc9/sshd-checkstyle.xml
----------------------------------------------------------------------
diff --git a/sshd-checkstyle.xml b/sshd-checkstyle.xml
index 356ab93..88a825f 100644
--- a/sshd-checkstyle.xml
+++ b/sshd-checkstyle.xml
@@ -66,8 +66,9 @@
         <module name="TypeName" />
 
             <!-- Checks for imports                              -->
-            <!-- See http://checkstyle.sf.net/config_import.html -->
+            <!-- See http://checkstyle.sf.net/config_imports.html -->
         <module name="AvoidStarImport" />
+        <module name="AvoidStaticImport" />
         <module name="IllegalImport" /><!-- defaults to sun.* packages -->
         <module name="RedundantImport" />
         <module name="UnusedImports" />