Disable illegal import check
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"/>