[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] Re: Organize Imports - import all types

Stefan Bley wrote:
Before:

public Class Foo {
    java.util.List l;
}

After:

import java.util.List;
public Class Foo {
    List l;
}

Is there a way to use Organize Imports for that?


No: https://bugs.eclipse.org/bugs/show_bug.cgi?id=112999

HTH
Benno