Skip to content

Commit

Permalink
This does not need to be sealed
Browse files Browse the repository at this point in the history
  • Loading branch information
tginsberg committed Aug 11, 2024
1 parent 95dd16b commit 00bd92a
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@

import static com.ginsberg.gatherers4j.GathererUtils.mustNotBeNull;

abstract public sealed class BigDecimalGatherer<INPUT>
implements Gatherer<INPUT, BigDecimalGatherer.State, BigDecimal>
permits BigDecimalSimpleAverageGatherer, BigDecimalSimpleMovingAverageGatherer, BigDecimalStandardDeviationGatherer {

abstract public class BigDecimalGatherer<INPUT>
implements Gatherer<INPUT, BigDecimalGatherer.State, BigDecimal> {
private final Function<INPUT, BigDecimal> mappingFunction;
private MathContext mathContext = MathContext.DECIMAL64;
private BigDecimal nullReplacement;
Expand Down

0 comments on commit 00bd92a

Please sign in to comment.