Author: sebb Date: Wed Sep 26 18:43:40 2012 New Revision: 1390656 URL: http://svn.apache.org/viewvc?rev=1390656&view=rev Log: Package protection is sufficient here
Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FastDateParser.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FastDateParser.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FastDateParser.java?rev=1390656&r1=1390655&r2=1390656&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FastDateParser.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FastDateParser.java Wed Sep 26 18:43:40 2012 @@ -473,7 +473,7 @@ public class FastDateParser implements D * @param twoDigitYear The year to adjust * @return A value within -80 and +20 years from instantiation of this instance */ - protected int adjustYear(int twoDigitYear) { + int adjustYear(int twoDigitYear) { int trial= twoDigitYear + thisYear - thisYear%100; if(trial < thisYear+20) { return trial;