Author: celestin
Date: Tue Dec  4 06:41:57 2012
New Revision: 1416796

URL: http://svn.apache.org/viewvc?rev=1416796&view=rev
Log:
Javadoc: warning about private methods being accessed through reflection in
unit tests.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java?rev=1416796&r1=1416795&r2=1416796&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java
 Tue Dec  4 06:41:57 2012
@@ -257,7 +257,8 @@ public class Beta {
     /**
      * Returns the value of log Γ(a + b) for 1 ≤ a, b ≤ 2. Based on the
      * <em>NSWC Library of Mathematics Subroutines</em> double precision
-     * implementation, {@code DGSMLN}.
+     * implementation, {@code DGSMLN}. In {@link BetaTest#testLogGammaSum()},
+     * this private method is accessed through reflection.
      *
      * @param a First argument.
      * @param b Second argument.
@@ -288,7 +289,9 @@ public class Beta {
     /**
      * Returns the value of log[Γ(b) / Γ(a + b)] for a ≥ 0 and b ≥ 10. 
Based on
      * the <em>NSWC Library of Mathematics Subroutines</em> double precision
-     * implementation, {@code DLGDIV}.
+     * implementation, {@code DLGDIV}. In
+     * {@link BetaTest#testLogGammaMinusLogGammaSum()}, this private method is
+     * accessed through reflection.
      *
      * @param a First argument.
      * @param b Second argument.
@@ -373,7 +376,9 @@ public class Beta {
     /**
      * Returns the value of Δ(p) + Δ(q) - Δ(p + q), with p, q ≥ 10. Based 
on
      * the <em>NSWC Library of Mathematics Subroutines</em> double precision
-     * implementation, {@code DBCORR}.
+     * implementation, {@code DBCORR}. In
+     * {@link BetaTest#testSumDeltaMinusDeltaSum()}, this private method is
+     * accessed through reflection.
      *
      * @param p First argument.
      * @param q Second argument.


Reply via email to