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
This commit is contained in:
parent
acbee6a950
commit
92d071b8b5
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Reference in New Issue