Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

overridingMethods on Java interface methods does not work properly #723

Closed
LABSARI opened this issue Feb 20, 2024 · 0 comments
Closed

overridingMethods on Java interface methods does not work properly #723

LABSARI opened this issue Feb 20, 2024 · 0 comments
Assignees

Comments

@LABSARI
Copy link
Collaborator

LABSARI commented Feb 20, 2024

interface I{

    void foo(){
        System.out.println("I.foo()");
    }
}
class A implements I{

    @Override
    void foo(){
        System.out.println("A.foo()");
    }
}

Method foo from interface I is overridden in class A. And overridingMethods on that method does not catch the overriding method.

@LABSARI LABSARI self-assigned this Feb 20, 2024
@LABSARI LABSARI changed the title overridingMethods on interface methods does not work properly overridingMethods on Java interface methods does not work properly Feb 20, 2024
ISayarLu added a commit that referenced this issue Feb 23, 2024
…-Java-interface-methods-does-not-work-properly

Fix #723
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant