declex icon indicating copy to clipboard operation
declex copied to clipboard

Import is not working for methods in class parents

Open smaugho opened this issue 6 years ago • 0 comments

Let's say you make a Bean which is going to be used in an activity, and you declare an import like:

@Import public void finish() {}

The finish() method is not imported from the activity at least that you declare it in the Subclassing activity itself:

   @Override
    public void finish() {
        super.finish();
    }

smaugho avatar Oct 26 '17 10:10 smaugho