From 92d071b8b50b410ab99dfae9e69ba23b62535ee7 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Tue, 1 Feb 2011 00:12:09 +0000 Subject: [PATCH] Arrays might as well be final git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1065872 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/util/FastMath.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/util/FastMath.java b/src/main/java/org/apache/commons/math/util/FastMath.java index 245ea41ba..b9e3c5035 100644 --- a/src/main/java/org/apache/commons/math/util/FastMath.java +++ b/src/main/java/org/apache/commons/math/util/FastMath.java @@ -143,7 +143,7 @@ public class FastMath { private static final double TANGENT_TABLE_B[] = new double[14]; /** Bits of 1/(2*pi), need for reducePayneHanek(). */ - private static long RECIP_2PI[] = new long[] { + private static final long RECIP_2PI[] = new long[] { (0x28be60dbL << 32) | 0x9391054aL, (0x7f09d5f4L << 32) | 0x7d4d3770L, (0x36d8a566L << 32) | 0x4f10e410L, @@ -164,7 +164,7 @@ public class FastMath { 0x9afed7ecL << 32 }; /** Bits of pi/4, need for reducePayneHanek(). */ - private static long PI_O_4_BITS[] = new long[] { + private static final long PI_O_4_BITS[] = new long[] { (0xc90fdaa2L << 32) | 0x2168c234L, (0xc4c6628bL << 32) | 0x80dc1cd1L };