You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/25 20:32:33 UTC

svn commit: r902948 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/DateUtils.java

Author: sebb
Date: Mon Jan 25 19:32:33 2010
New Revision: 902948

URL: http://svn.apache.org/viewvc?rev=902948&view=rev
Log:
Javadoc correction

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=902948&r1=902947&r2=902948&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 Mon Jan 25 19:32:33 2010
@@ -298,15 +298,14 @@
      * 
      * @param str  the date to parse, not null
      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
-     * @param lenient Specify whether or not date/time parsing is to be lenient.
      * @return the parsed date
      * @throws IllegalArgumentException if the date string or pattern array is null
      * @throws ParseException if none of the date patterns were suitable
-     * @see java.util.Calender#isLenient()
      */
     public static Date parseDateStrictly(String str, String[] parsePatterns) throws ParseException {
         return parseDateWithLeniency(str, parsePatterns, false);
     }
+
     private static Date parseDateWithLeniency(String str, String[] parsePatterns,
             boolean lenient) throws ParseException {
         if (str == null || parsePatterns == null) {