diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.java
index 141f93687..8a79feb01 100755
--- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.java
+++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.java
@@ -30,18 +30,6 @@ import org.apache.commons.beanutils.ConversionException;
* for ensuring that application layering is not violated. Ideas on how the
* check can be improved include support for:
*
- * - Having guards for importing of classes.
- *
- *
- Guards that only apply locally. That is, the Guard does not apply to
- * subpackages. For example, allow the package "com.foo" to import the
- * package "java.swing", but not allow subpackages like "com.foo.bar".
- * Currently you can work around this by having disallow guards specified
- * in the subpackages.
- *
- *
- Guards that match packages exactly. For example, only match imports
- * from the "com.foo" package, and not from subpackages like
- * "com.foo.bar".
- *
*
- Change the default policy that if a package being checked does not
* match any guards, then it is allowed. Currently defaults to disallowed.
*