=== modified file 'dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/util/MathUtils.java' --- dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/util/MathUtils.java 2014-11-02 22:01:27 +0000 +++ dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/util/MathUtils.java 2014-11-02 22:04:54 +0000 @@ -201,7 +201,7 @@ * * @param value the value to return and potentially round off. */ - public static Object getRounded( Object value ) + public static Object getRoundedObject( Object value ) { return value != null && Double.class.equals( value.getClass() ) ? getRounded( (Double) value ) : value; }