[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.