Skip to content

Commit

Permalink
Run spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldobapvicjr committed Sep 26, 2024
1 parent 90118b6 commit 597d3b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import java.math.MathContext;

/**
* Returns the average (arithmetic mean) of the numeric arguments, with recursive support for arrays
* too.
* Returns the average (arithmetic mean) of the numeric arguments, with recursive support for
* arrays.
*
* @author oswaldo.bapvic.jr
*/
Expand Down Expand Up @@ -59,7 +59,7 @@ private SumAndCount recursiveSumAndCount(EvaluationValue parameter) {
return new SumAndCount(parameter.getNumberValue(), BigDecimal.ONE);
}

private class SumAndCount {
private final class SumAndCount {
private final BigDecimal sum;
private final BigDecimal count;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@

import static org.assertj.core.api.Assertions.assertThat;

import java.util.List;

import com.ezylang.evalex.EvaluationException;
import com.ezylang.evalex.Expression;
import com.ezylang.evalex.parser.ParseException;
import java.util.List;
import org.junit.jupiter.api.Test;

/**
Expand Down

0 comments on commit 597d3b7

Please sign in to comment.