This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IncorrectCoupling { | |
public static class Points{ | |
private String productId; | |
private Long totalPoints; | |
private PointsMappingExternalSystem pointsMappingExternalSystem; | |
private PointsMultiplierExternalSystem pointsMultiplierExternalSystem; | |
public Double calculateTotalPoints(){ | |
return pointsMappingExternalSystem.getPointsMappingFromExternalSystem().stream().map(PointsMapping::getPoints).reduce(0d, Double::sum) |
OlderNewer