79613143

Date: 2025-05-08 20:48:14
Score: 1
Natty:
Report link

You can create a util method to wrap the amount.:

private BigDecimal resolveScientificAmount(BigDecimal amount) {
        if (amount == null) {
            return null;
        }
        return new BigDecimal(amount.toPlainString());
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Oladejo Olajide