| [news.eclipse.tools.jdt] Re: Organize Imports - import all types |
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