Community
Participate
Working Groups
i have a cu: package p1; import p.A.*; now, i want to add an import 'p.Inner' it gets incorrectly inserted before the p.A.* import (i use ImportEdit::addImport)
fixed > 20021125 added Test: AddImportTest.testAddImports_bug23078
not fixed the correct sequence is (alphabetically): import p.A.*; import p.Inner; the current result is the reverse (and the test is bogus)
Note that the sorting depends on the 'package' name: p.Inner: package name is p p.A.*: package name is p.A p < p.A
p.A is a type name, no a package name