You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Alexander Lapin (Jira)" <ji...@apache.org> on 2022/08/04 06:35:00 UTC

[jira] [Updated] (IGNITE-17464) Network messages multiple inheritance code generation issue

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

Alexander Lapin updated IGNITE-17464:
-------------------------------------
    Description: 
COMPILATION ERROR : Getter with name 'a' is already defined is thrown in case of following network messages inheritance graph.
{code:java}
interface A
void a()
 
interface B extends A
interface C extends A
interface D extends B,C
{code}

  was:
COMPILATION ERROR : Getter with name 'a' is already defined

is thrown in case of following network messages inheritance graph.

 
{code:java}
interface A
void a()
 
interface B extends A
interface C extends A
interface D extends B,C
{code}
 


> Network messages multiple inheritance code generation issue
> -----------------------------------------------------------
>
>                 Key: IGNITE-17464
>                 URL: https://issues.apache.org/jira/browse/IGNITE-17464
>             Project: Ignite
>          Issue Type: Improvement
>            Reporter: Alexander Lapin
>            Priority: Major
>              Labels: ignite-3
>
> COMPILATION ERROR : Getter with name 'a' is already defined is thrown in case of following network messages inheritance graph.
> {code:java}
> interface A
> void a()
>  
> interface B extends A
> interface C extends A
> interface D extends B,C
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)