Re: Bug in GenericDelegator storeAll ?

2009-11-15 Thread Jacques Le Roux
Hi Patrick, Did you find any drawbacks further than distinction between 15.99 and 15.990 ? Jacques From: "Patrick Antivackis" Hello, I'm wondering if in framework/entity/src/org/ofbiz/entity/GenericDelegator.java on line 1384 the expression : if ((fieldValue == null && oldValue != null) || (f

Bug in GenericDelegator storeAll ?

2009-10-22 Thread Patrick Antivackis
Hello, I'm wondering if in framework/entity/src/org/ofbiz/entity/GenericDelegator.java on line 1384 the expression : if ((fieldValue == null && oldValue != null) || (fieldValue != null && !fieldValue.equals(oldValue))) shouldn't use compareTo instead of equals as in the GenericEntity class where al