package com.example;
class OuterClass {
class InnerClass {
}
}
The correct import for this should be import com.example.OuterClass.InnerClass;. When I am using auto-complete, it works perfectly. But when I am using company for completion, the automatically added import is import com.example.InnerClass;.
Suppose I have a class like following
The correct import for this should be
import com.example.OuterClass.InnerClass;
. When I am using auto-complete, it works perfectly. But when I am using company for completion, the automatically added import isimport com.example.InnerClass;
.