Author: erans
Date: Mon Oct 10 21:20:30 2011
New Revision: 1181245

URL: http://svn.apache.org/viewvc?rev=1181245&view=rev
Log:
Lowered access level.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMathResources.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMathResources.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMathResources.java?rev=1181245&r1=1181244&r2=1181245&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMathResources.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMathResources.java
 Mon Oct 10 21:20:30 2011
@@ -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));
     }
 


Reply via email to