Community
Participate
Working Groups
As described in bug 319613, performing organize imports on the following aspect and ArrayList will not be imported: aspect Aspect { declare @type : ArrayList : @Foo; } The correct behavior is to produce something like: import java.util.ArrayList; aspect Aspect { declare @type : ArrayList : @Foo; } Note that if the import statement already exists, performing organize imports will not remove it.