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

ASF GitHub Bot commented on BROOKLYN-461:
-----------------------------------------

Github user asfgit commented on the issue:

    https://github.com/apache/brooklyn-server/pull/893
  
    SUCCESS 
     4932 tests run, 0 skipped, 0 failed.
    --none--


> Merging config keys: CollectionMerger.Ref.equals always return true
> -------------------------------------------------------------------
>
>                 Key: BROOKLYN-461
>                 URL: https://issues.apache.org/jira/browse/BROOKLYN-461
>             Project: Brooklyn
>          Issue Type: Bug
>            Reporter: JC
>            Assignee: Aled Sage
>            Priority: Trivial
>             Fix For: 0.11.0
>
>
> Hi
> In recent github mirror of broolyn-server, I've found the following issue in 
> equals implementation.
> Path: 
> utils/common/src/main/java/org/apache/brooklyn/util/collections/CollectionMerger.java
> {code}
> 196 
> 197             @Override
> 198             public boolean equals(Object o) {
> 199                 if (!(o instanceof Ref)) {
> 200                     return false;
> 201                 }
> 202                 return ((Ref)o).obj == ((Ref)o).obj;
> 203             }
> {code}
> Line 202 should be like this?
> {code}
> 202                 return this.obj == ((Ref)o).obj;
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to