Should be a static variable.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1144995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-07-11 00:53:09 +00:00
parent 782ea59054
commit 9d6bc2827e
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ public void testDurationsByBruteForce() {
//bruteForce(1996, 1, 29, "M", Calendar.MONTH); // this will fail //bruteForce(1996, 1, 29, "M", Calendar.MONTH); // this will fail
} }
private int FOUR_YEARS = 365 * 3 + 366; private final int FOUR_YEARS = 365 * 3 + 366;
// Takes a minute to run, so generally turned off // Takes a minute to run, so generally turned off
// public void testBrutally() { // public void testBrutally() {