Updated description for RedundantImport

Mentioning that static imports are allowed from java.lang and same package.
This commit is contained in:
ivanov-alex 2015-06-16 12:08:48 +03:00
parent 1634289dd3
commit 44b3fe0b14
1 changed files with 2 additions and 2 deletions

View File

@ -240,11 +240,11 @@
imported more than once.
</li>
<li>
The class imported is from the <code>java.lang</code>
The class non-statically imported is from the <code>java.lang</code>
package, e.g. importing <code>java.lang.String</code>.
</li>
<li>
The class imported is from the same package.
The class non-statically imported is from the same package as the current package.
</li>
</ul>
</subsection>