I think there may be a bug in the org.apache.commons.betwixt.digester.AddDefaultsRule class.
I was testing the "add-adders" and "add-properties" flags on the <addDefaults> element
in the .betwixt file. The flags didn't seem to work correctly, so I debugged into AddDefaultsRule
and saw on line 69:
addProperties = Boolean.valueOf(addAddersAttributeValue).booleanValue();
I changed this to:
addAdders = Boolean.valueOf(addAddersAttributeValue).booleanValue();
and things worked as expected.
thanks,
glenn
---------------------------------------------------------------------
To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-user-help@jakarta.apache.org
|