Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 34790 invoked from network); 2 May 2006 04:58:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 May 2006 04:58:54 -0000 Received: (qmail 20716 invoked by uid 500); 2 May 2006 04:58:48 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 20630 invoked by uid 500); 2 May 2006 04:58:47 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 20619 invoked by uid 500); 2 May 2006 04:58:47 -0000 Received: (qmail 20616 invoked by uid 99); 2 May 2006 04:58:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 May 2006 21:58:47 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 May 2006 21:58:46 -0700 Received: (qmail 34567 invoked by uid 65534); 2 May 2006 04:58:26 -0000 Message-ID: <20060502045826.34536.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r398809 - /jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java Date: Tue, 02 May 2006 04:58:18 -0000 To: commons-cvs@jakarta.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ggregory Date: Mon May 1 21:58:09 2006 New Revision: 398809 URL: http://svn.apache.org/viewcvs?rev=398809&view=rev Log: Fix Javadoc nit: use the active voice. Modified: jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java Modified: jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java?rev=398809&r1=398808&r2=398809&view=diff ============================================================================== --- jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java (original) +++ jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/time/DateFormatUtils.java Mon May 1 21:58:09 2006 @@ -116,7 +116,7 @@ } /** - *

Format a date/time into a specific pattern using the UTC time zone.

+ *

Formats a date/time into a specific pattern using the UTC time zone.

* * @param millis the date to format expressed in milliseconds * @param pattern the pattern to use to format the date @@ -127,7 +127,7 @@ } /** - *

Format a date/time into a specific pattern using the UTC time zone.

+ *

Formats a date/time into a specific pattern using the UTC time zone.

* * @param date the date to format * @param pattern the pattern to use to format the date @@ -138,7 +138,7 @@ } /** - *

Format a date/time into a specific pattern using the UTC time zone.

+ *

Formats a date/time into a specific pattern using the UTC time zone.

* * @param millis the date to format expressed in milliseconds * @param pattern the pattern to use to format the date @@ -150,7 +150,7 @@ } /** - *

Format a date/time into a specific pattern using the UTC time zone.

+ *

Formats a date/time into a specific pattern using the UTC time zone.

* * @param date the date to format * @param pattern the pattern to use to format the date @@ -162,7 +162,7 @@ } /** - *

Format a date/time into a specific pattern.

+ *

Formats a date/time into a specific pattern.

* * @param millis the date to format expressed in milliseconds * @param pattern the pattern to use to format the date @@ -173,7 +173,7 @@ } /** - *

Format a date/time into a specific pattern.

+ *

Formats a date/time into a specific pattern.

* * @param date the date to format * @param pattern the pattern to use to format the date @@ -184,7 +184,7 @@ } /** - *

Format a date/time into a specific pattern in a time zone.

+ *

Formats a date/time into a specific pattern in a time zone.

* * @param millis the time expressed in milliseconds * @param pattern the pattern to use to format the date @@ -196,7 +196,7 @@ } /** - *

Format a date/time into a specific pattern in a time zone.

+ *

Formats a date/time into a specific pattern in a time zone.

* * @param date the date to format * @param pattern the pattern to use to format the date @@ -208,7 +208,7 @@ } /** - *

Format a date/time into a specific pattern in a locale.

+ *

Formats a date/time into a specific pattern in a locale.

* * @param millis the date to format expressed in milliseconds * @param pattern the pattern to use to format the date @@ -220,7 +220,7 @@ } /** - *

Format a date/time into a specific pattern in a locale.

+ *

Formats a date/time into a specific pattern in a locale.

* * @param date the date to format * @param pattern the pattern to use to format the date @@ -232,7 +232,7 @@ } /** - *

Format a date/time into a specific pattern in a time zone and locale.

+ *

Formats a date/time into a specific pattern in a time zone and locale.

* * @param millis the date to format expressed in milliseconds * @param pattern the pattern to use to format the date @@ -245,7 +245,7 @@ } /** - *

Format a date/time into a specific pattern in a time zone and locale.

+ *

Formats a date/time into a specific pattern in a time zone and locale.

* * @param date the date to format * @param pattern the pattern to use to format the date --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org