Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Implemented
-
Trunk
-
None
-
None
Description
Map.getOrDefault method could be used to replace the code like this:
BigDecimal currentTotalPrice = productWeight.containsKey(product) ? productWeight.get(product) : BigDecimal.ZERO;
Replace with:
BigDecimal currentTotalPrice = productWeight.getOrDefault(product, BigDecimal.ZERO);