You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2003/08/06 04:48:23 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/time DateFormatUtils.java

ggregory    2003/08/05 19:48:23

  Modified:    lang/src/java/org/apache/commons/lang/time
                        DateFormatUtils.java
  Log:
  Oops, tiny typo: "time zone ." -> "time zone."
  
  Revision  Changes    Path
  1.5       +15 -15    jakarta-commons/lang/src/java/org/apache/commons/lang/time/DateFormatUtils.java
  
  Index: DateFormatUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/time/DateFormatUtils.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DateFormatUtils.java	6 Aug 2003 01:44:57 -0000	1.4
  +++ DateFormatUtils.java	6 Aug 2003 02:48:23 -0000	1.5
  @@ -73,28 +73,28 @@
   public class DateFormatUtils {
   
       /**
  -     * ISO8601 formatter for date-time witout time zone .
  +     * ISO8601 formatter for date-time witout time zone.
        * The format used is <tt>yyyy-MM-dd'T'HH:mm:ss</tt>.
        */
       public static final FastDateFormat ISO_DATETIME_FORMAT
               = FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ss");
   
       /**
  -     * ISO8601 formatter for date-time with time zone .
  +     * ISO8601 formatter for date-time with time zone.
        * The format used is <tt>yyyy-MM-dd'T'HH:mm:ssZZ</tt>.
        */
       public static final FastDateFormat ISO_DATETIME_TIMEZONE_FORMAT
               = FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ssZZ");
   
       /**
  -     * ISO8601 formatter for date without time zone .
  +     * ISO8601 formatter for date without time zone.
        * The format used is <tt>yyyy-MM-dd</tt>.
        */
       public static final FastDateFormat ISO_DATE_FORMAT
               = FastDateFormat.getInstance("yyyy-MM-dd");
   
       /**
  -     * ISO8601-like formatter for date with time zone .
  +     * ISO8601-like formatter for date with time zone.
        * The format used is <tt>yyyy-MM-ddZZ</tt>.
        * This pattern does not comply with the formal ISO8601 specification
        * as the standard does not allow a time zone  without a time.
  @@ -103,21 +103,21 @@
               = FastDateFormat.getInstance("yyyy-MM-ddZZ");
   
       /**
  -     * ISO8601 formatter for time without time zone .
  +     * ISO8601 formatter for time without time zone.
        * The format used is <tt>'T'HH:mm:ss</tt>.
        */
       public static final FastDateFormat ISO_TIME_FORMAT
               = FastDateFormat.getInstance("'T'HH:mm:ss");
   
       /**
  -     * ISO8601 formatter for time with time zone .
  +     * ISO8601 formatter for time with time zone.
        * The format used is <tt>'T'HH:mm:ssZZ</tt>.
        */
       public static final FastDateFormat ISO_TIME_TIMEZONE_FORMAT
               = FastDateFormat.getInstance("'T'HH:mm:ssZZ");
   
       /**
  -     * ISO8601-like formatter for time without time zone .
  +     * ISO8601-like formatter for time without time zone.
        * The format used is <tt>HH:mm:ss</tt>.
        * This pattern does not comply with the formal ISO8601 specification
        * as the standard requires the 'T' prefix for times.
  @@ -126,7 +126,7 @@
               = FastDateFormat.getInstance("HH:mm:ss");
   
       /**
  -     * ISO8601-like formatter for time with time zone .
  +     * ISO8601-like formatter for time with time zone.
        * The format used is <tt>HH:mm:ssZZ</tt>.
        * This pattern does not comply with the formal ISO8601 specification
        * as the standard requires the 'T' prefix for times.
  @@ -152,7 +152,7 @@
       }
   
       /**
  -     * <p>Format a date/time into a specific pattern using the UTC time zone .</p>
  +     * <p>Format a date/time into a specific pattern using the UTC time zone.</p>
        * 
        * @param millis  the date to format expressed in milliseconds
        * @param pattern  the pattern to use to format the date
  @@ -163,7 +163,7 @@
       }
   
       /**
  -     * <p>Format a date/time into a specific pattern using the UTC time zone .</p>
  +     * <p>Format a date/time into a specific pattern using the UTC time zone.</p>
        * 
        * @param date  the date to format
        * @param pattern  the pattern to use to format the date
  @@ -174,7 +174,7 @@
       }
       
       /**
  -     * <p>Format a date/time into a specific pattern using the UTC time zone .</p>
  +     * <p>Format a date/time into a specific pattern using the UTC time zone.</p>
        * 
        * @param millis  the date to format expressed in milliseconds
        * @param pattern  the pattern to use to format the date
  @@ -186,7 +186,7 @@
       }
   
       /**
  -     * <p>Format a date/time into a specific pattern using the UTC time zone .</p>
  +     * <p>Format a date/time into a specific pattern using the UTC time zone.</p>
        * 
        * @param date  the date to format
        * @param pattern  the pattern to use to format the date
  @@ -220,7 +220,7 @@
       }
       
       /**
  -     * <p>Format a date/time into a specific pattern in a time zone .</p>
  +     * <p>Format a date/time into a specific pattern in a time zone.</p>
        * 
        * @param millis  the time expressed in milliseconds
        * @param pattern  the pattern to use to format the date
  @@ -232,7 +232,7 @@
       }
   
       /**
  -     * <p>Format a date/time into a specific pattern in a time zone .</p>
  +     * <p>Format a date/time into a specific pattern in a time zone.</p>
        * 
        * @param date  the date to format
        * @param pattern  the pattern to use to format the date