You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Dave Brosius (JIRA)" <ji...@apache.org> on 2009/11/14 21:00:39 UTC

[jira] Updated: (JCR-2392) [patch] QValueFactoryImpl.equals doesn't do compare correctly

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

Dave Brosius updated JCR-2392:
------------------------------

    Attachment: equals_fix.diff

> [patch] QValueFactoryImpl.equals doesn't do compare correctly
> -------------------------------------------------------------
>
>                 Key: JCR-2392
>                 URL: https://issues.apache.org/jira/browse/JCR-2392
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-spi2dav
>    Affects Versions: 1.6.0
>            Reporter: Dave Brosius
>            Priority: Minor
>             Fix For: 1.6.1
>
>         Attachments: equals_fix.diff
>
>
> equals compares it's uri to it's own uri, as poosed to the other one.
>                  // for both the value has not been loaded yet
>                  if (!initialized) {
>                      if (other.uri != null) {
> -                        return uri.equals(uri);
> +                        return other.uri.equals(uri);
>                      } else {
>                          // need to load the binary value in order to be able
>                          // to compare the 2 values.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.