Consider the following: ```groovy interface One<T> extends Comparable<T> { } class Many<T extends One<? super T>> { Set<T> getAll() { } } ``` Organize Imports (Ctrl+Shift+O) trips up on "T" which refers to itself.
Consider the following:
Organize Imports (Ctrl+Shift+O) trips up on "T" which refers to itself.