emacs-eclim icon indicating copy to clipboard operation
emacs-eclim copied to clipboard

Incorrect imports for nested classes when using company autocompletion

Open amol-mandhane opened this issue 8 years ago • 1 comments

Suppose I have a class like following

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;.

amol-mandhane avatar Jun 30 '16 13:06 amol-mandhane

Development for this repository has moved to emacs-eclim/emacs-eclim. Please submit your issue there.

nloyola avatar Jul 01 '16 20:07 nloyola