You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@servicecomb.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2018/05/11 07:18:00 UTC

[jira] [Commented] (SCB-532) support recursive dependence

    [ https://issues.apache.org/jira/browse/SCB-532?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16471558#comment-16471558 ] 

ASF GitHub Bot commented on SCB-532:
------------------------------------

wujimin opened a new pull request #699: [SCB-532] Support recursive dependency
URL: https://github.com/apache/incubator-servicecomb-java-chassis/pull/699
 
 
   support create recursive dependency class
   ```
   1. class A {
     A a;
   }
   
   2. class A {
     B b;
   }
   class B {
     A a;
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


> support recursive dependence
> ----------------------------
>
>                 Key: SCB-532
>                 URL: https://issues.apache.org/jira/browse/SCB-532
>             Project: Apache ServiceComb
>          Issue Type: Sub-task
>          Components: Java-Chassis
>            Reporter: wujimin
>            Assignee: wujimin
>            Priority: Major
>             Fix For: java-chassis-1.0.0-m2
>
>
> {code:java}
> 1.class A{
>   A a;
> }
> 2.class A{
>   B b;
> }
> class B{
>   A a;
> }{code}
>  



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