-
Type:
Improvement
-
Status: Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.6.0
-
Fix Version/s: 2.0.0
-
Component/s: core, hadoop-integration
-
Labels:None
Checks for redundant import statements. An import statement is considered redundant if:
- It is a duplicate of another import.
- The class non-statically imported is from the java.lang package, e.g. importing java.lang.String.
- The class non-statically imported is from the same package as the current package.
- links to