Removed unused variables.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1416204 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-12-02 17:43:39 +00:00
parent e10e0441a0
commit 0fde6532f1
1 changed files with 1 additions and 3 deletions

View File

@ -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) {