Constants might as well be static

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1003576 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-10-01 16:39:47 +00:00
parent 08c4e822e5
commit 0b1d8afb21
1 changed files with 3 additions and 2 deletions

View File

@ -28,8 +28,9 @@ import org.junit.Test;
public class FastMathTest {
private final double MAX_ERROR_ULP = 0.51;
private final int NUMBER_OF_TRIALS = 1000;
private static final double MAX_ERROR_ULP = 0.51;
private static final int NUMBER_OF_TRIALS = 1000;
private DfpField field;
private RandomGenerator generator;