Compares the specified object with this cart item is not in the right way.
--------------------------------------------------------------------------
Key: OFBIZ-3478
URL: https://issues.apache.org/jira/browse/OFBIZ-3478
Project: OFBiz
Issue Type: Bug
Components: order
Affects Versions: SVN trunk
Reporter: Amit Sharma
Fix For: SVN trunk
In ShoppingCartItem.java compares of the specified object with this cart item
is not in the right way.
It should be
if (!this.reservLength.equals(reservLength)) {
return false;
}
instead of
if (this.reservLength != reservLength) {
return false;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.