Skip to content

Superclass not recompiled when static method is added to subclass #17

Description

@Sipkab

Describe the bug
The superclass is not recompiled when a static method is added that is potentially referenced by the superclass.

To Reproduce

class SuperClass {
    public static SuperClass create(CharSequence obj) {
        if (obj instanceof String) {
             return SubClass.create((String)obj);
        }
        //...
    }
}
class SubClass extends SuperClass {
    public static SubClass create(String s) {
        // this new method is added, and the SuperClass is not recompiled
    }}}
}

Or something like the above.

Expected behavior
SuperClass is recompiled

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions