|
Project
|
IntelliJ IDEA: Backlog
|
|
Priority
|
Normal |
|
Type
|
Bug |
|
Fix versions
|
No Fix versions |
|
State
|
Open |
|
Assignee
|
Eugene Vigdorchik |
|
Subsystem
|
Refactoring |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
package a;
public interface Foo {
FooImpl.I getI();
}
package a;
public class FooImpl implements Foo {
public interface I {
}
public I getI() {
return null;
}
}
package a;
public interface Foo {
FooImpl.I getI(); // <<< should be just "I" now
interface I {
}
}