This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
commit 366f9d537c878c14a7b5c778935b670aa040defe Author: Alex Herbert <aherb...@apache.org> AuthorDate: Thu Dec 23 13:03:51 2021 +0000 Remove public from package level utility class --- .../src/main/java/org/apache/commons/numbers/gamma/BoostMath.java | 2 +- .../src/main/java/org/apache/commons/numbers/gamma/BoostTools.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostMath.java b/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostMath.java index 217b1ce..0098f52 100644 --- a/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostMath.java +++ b/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostMath.java @@ -29,7 +29,7 @@ package org.apache.commons.numbers.gamma; * {@code c++} implementations in {@code <boost/math/special_functions/>}. * All work is copyright John Maddock 2006 and subject to the Boost Software License. */ -public final class BoostMath { +final class BoostMath { /** Private constructor. */ private BoostMath() { // intentionally empty. diff --git a/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostTools.java b/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostTools.java index f9ae9ad..6dfffa5 100644 --- a/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostTools.java +++ b/commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/BoostTools.java @@ -31,7 +31,7 @@ import java.util.function.DoubleSupplier; * {@code c++} implementations in {@code <boost/math/tools/>}. * All work is copyright John Maddock 2006 and subject to the Boost Software License. */ -public final class BoostTools { +final class BoostTools { /** * The minimum epsilon value for relative error in the summation. * Equal to Math.ulp(1.0) or 2^-52.