From 015f45e2fdd2e0281e0bb8ca6a17a828f6c4d15f Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Mon, 10 Oct 2011 21:20:30 +0000 Subject: [PATCH] Lowered access level. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1181245 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math/util/FastMathResources.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/math/util/FastMathResources.java b/src/main/java/org/apache/commons/math/util/FastMathResources.java index cd7e65a15..bcd71f0fc 100644 --- a/src/main/java/org/apache/commons/math/util/FastMathResources.java +++ b/src/main/java/org/apache/commons/math/util/FastMathResources.java @@ -130,7 +130,7 @@ class FastMathResources { * * @return the retrieved data. */ - public static double[][] loadExpInt() { + static double[][] loadExpInt() { return loadTable2d(EXP_INT, 2, FastMath.EXP_INT_TABLE_LEN); } @@ -141,7 +141,7 @@ class FastMathResources { * * @return the retrieved data. */ - public static double[][] loadExpFrac() { + static double[][] loadExpFrac() { return loadTable2d(EXP_FRAC, 2, FastMath.EXP_FRAC_TABLE_LEN); } @@ -150,7 +150,7 @@ class FastMathResources { * * @return the retrieved data. */ - public static double[][] loadLnMant() { + static double[][] loadLnMant() { return transpose(loadTable2d(LN_MANT, 2, FastMath.LN_MANT_LEN)); }