Author: bayard Date: Wed Dec 28 07:05:24 2011 New Revision: 1225117 URL: http://svn.apache.org/viewvc?rev=1225117&view=rev Log: Fixing the DateIterator javadoc to indicate the end date is inclusive, not 'not inclusive'
Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java?rev=1225117&r1=1225116&r2=1225117&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java Wed Dec 28 07:05:24 2011 @@ -1786,7 +1786,7 @@ public class DateUtils { * Constructs a DateIterator that ranges from one date to another. * * @param startFinal start date (inclusive) - * @param endFinal end date (not inclusive) + * @param endFinal end date (inclusive) */ DateIterator(Calendar startFinal, Calendar endFinal) { super();