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 e03cbc06ec1623f5813d8d135a622b3f05c6f8e5 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Sun Dec 22 20:29:34 2019 +0000 EPSILON should be private --- .../src/main/java/org/apache/commons/numbers/complex/Complex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java index 23c79a4..0adc915 100644 --- a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java +++ b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java @@ -119,7 +119,7 @@ public final class Complex implements Serializable { * * @see <a href="http://en.wikipedia.org/wiki/Machine_epsilon">Machine epsilon</a> */ - public static final double EPSILON = Double.longBitsToDouble((EXPONENT_OFFSET - 53L) << 52); + private static final double EPSILON = Double.longBitsToDouble((EXPONENT_OFFSET - 53L) << 52); /** Serializable version identifier. */ private static final long serialVersionUID = 20180201L;