Author: jonesde
Date: Fri Aug 31 18:02:46 2007
New Revision: 571663
URL:
http://svn.apache.org/viewvc?rev=571663&view=revLog:
Small comment change
Modified:
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java
Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java?rev=571663&r1=571662&r2=571663&view=diff==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java Fri Aug 31 18:02:46 2007
@@ -585,7 +585,7 @@
public BigDecimal getBigDecimal(String name) {
// this "hack" is needed for now until the Double/BigDecimal issues are all resolved
- // NOTE: for this to be used properly it should really be used as the java-type in the field type def XML files
+ // NOTE: for things to generally work properly BigDecimal should really be used as the java-type in the field type def XML files
Object value = get(name);
if (value instanceof Double) {
return new BigDecimal(((Double) value).doubleValue());