You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2019/04/19 06:26:19 UTC

[directory-buildtools] branch master updated: Disable illegal import check

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

seelmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-buildtools.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c9d11b  Disable illegal import check
1c9d11b is described below

commit 1c9d11ba7828b0445edb9ae0730d4a88c623e9e2
Author: Stefan Seelmann <ma...@stefan-seelmann.de>
AuthorDate: Fri Apr 19 08:25:37 2019 +0200

    Disable illegal import check
---
 checkstyle-configuration/src/main/resources/directory-checks.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/checkstyle-configuration/src/main/resources/directory-checks.xml b/checkstyle-configuration/src/main/resources/directory-checks.xml
index 7230e3b..f8b43ba 100644
--- a/checkstyle-configuration/src/main/resources/directory-checks.xml
+++ b/checkstyle-configuration/src/main/resources/directory-checks.xml
@@ -131,7 +131,7 @@
         <!-- Checks for imports                              -->
         <!-- See http://checkstyle.sf.net/config_import.html -->
         <module name="AvoidStarImport"/>
-        <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
+        <!--<module name="IllegalImport"/> --> <!-- defaults to sun.* packages -->
         <module name="RedundantImport"/>
         <module name="UnusedImports"/>