Severity | 3 |
---|---|
Enabled | yes |
Waivable | |
Configuration |
Import Order: java javax org com |
Rationale | Alphabetically ordered imports improve code readability. |
Violation |
import x.y.Z; import a.b.C; |
Fix |
import a.b.C; import x.y.Z; |
Resources | Common sense :-) |