diff --git a/src/helma/objectmodel/db/Property.java b/src/helma/objectmodel/db/Property.java index cdf073da..7550e329 100644 --- a/src/helma/objectmodel/db/Property.java +++ b/src/helma/objectmodel/db/Property.java @@ -455,7 +455,7 @@ public final class Property implements IProperty, Serializable, Cloneable, Compa return ((Boolean) value).booleanValue(); } - if (type == INTEGER) { + if (type == INTEGER || type == FLOAT) { return !(0 == getIntegerValue()); }