update ruoyi-common/src/main/java/com/ruoyi/common/utils/Arith.java.
This commit is contained in:
		| @@ -108,7 +108,7 @@ public class Arith | |||||||
|                     "The scale must be a positive integer or zero"); |                     "The scale must be a positive integer or zero"); | ||||||
|         } |         } | ||||||
|         BigDecimal b = new BigDecimal(Double.toString(v)); |         BigDecimal b = new BigDecimal(Double.toString(v)); | ||||||
|         BigDecimal one = new BigDecimal("1"); |         BigDecimal one = BigDecimal.ONE; | ||||||
|         return b.divide(one, scale, RoundingMode.HALF_UP).doubleValue(); |         return b.divide(one, scale, RoundingMode.HALF_UP).doubleValue(); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user