[ 
https://issues.apache.org/jira/browse/IGNITE-8408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexey Goncharuk updated IGNITE-8408:
-------------------------------------
    Description: 
{code}
            for (Class<?> c = cls != null ? cls : obj.getClass(); cls != 
Object.class; cls = cls.getSuperclass()) {
                Method mtd = null;

                for (Method declaredMtd : c.getDeclaredMethods()) {
...
{code}

The loop traverses class hierarchy, but always checks the original class 
methods.

> IgniteUtils.invoke does not look list superclass methods
> --------------------------------------------------------
>
>                 Key: IGNITE-8408
>                 URL: https://issues.apache.org/jira/browse/IGNITE-8408
>             Project: Ignite
>          Issue Type: Bug
>            Reporter: Alexey Goncharuk
>            Assignee: Alexey Goncharuk
>            Priority: Major
>
> {code}
>             for (Class<?> c = cls != null ? cls : obj.getClass(); cls != 
> Object.class; cls = cls.getSuperclass()) {
>                 Method mtd = null;
>                 for (Method declaredMtd : c.getDeclaredMethods()) {
> ...
> {code}
> The loop traverses class hierarchy, but always checks the original class 
> methods.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to