Community
Participate
Working Groups
Build Identifier: 20110824 result = mathLib.round(myFloat, myDecimal); balance = mathLib.round(mySmallFloat, myDecimal); d = mathLib.round(myDecimal, myDecimal); Give errors in generated Java: The method round(BigDecimal, Integer) in the type MathLib is not applicable for the arguments (BigDecimal, BigDecimal) The method round(BigDecimal, Integer) in the type MathLib is not applicable for the arguments (double, BigDecimal) The method round(BigDecimal, Integer) in the type MathLib is not applicable for the arguments (float, BigDecimal) Reproducible: Always
Those versions of the round function were a mistake. I removed them. Now we only have round functions whose second parameter is an int.
20110828
Verified