Lowered access level.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1181245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-10-10 21:20:30 +00:00
parent 5e6389761c
commit 015f45e2fd
1 changed files with 3 additions and 3 deletions

View File

@ -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));
}