From 44b3fe0b146d93d297e718c393dddf2d8a63809e Mon Sep 17 00:00:00 2001 From: ivanov-alex Date: Tue, 16 Jun 2015 12:08:48 +0300 Subject: [PATCH] Updated description for RedundantImport Mentioning that static imports are allowed from java.lang and same package. --- src/xdocs/config_imports.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdocs/config_imports.xml b/src/xdocs/config_imports.xml index 1accb7e3a..a68c5ad03 100644 --- a/src/xdocs/config_imports.xml +++ b/src/xdocs/config_imports.xml @@ -240,11 +240,11 @@ imported more than once.
  • - The class imported is from the java.lang + The class non-statically imported is from the java.lang package, e.g. importing java.lang.String.
  • - The class imported is from the same package. + The class non-statically imported is from the same package as the current package.