You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/12/02 18:43:39 UTC

svn commit: r1416204 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/special/Beta.java

Author: tn
Date: Sun Dec  2 17:43:39 2012
New Revision: 1416204

URL: http://svn.apache.org/viewvc?rev=1416204&view=rev
Log:
Removed unused variables.

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=1416204&r1=1416203&r2=1416204&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 Sun Dec  2 17:43:39 2012
@@ -307,10 +307,8 @@ public class Beta {
         }
 
         /*
-         * p = a / (a + b), q = b / (a + b), d = a + b - 0.5
+         * d = a + b - 0.5
          */
-        final double p;
-        final double q;
         final double d;
         final double w;
         if (a <= b) {