You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/10/18 13:55:22 UTC

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

Author: britter
Date: Fri Oct 18 11:55:22 2013
New Revision: 1533410

URL: http://svn.apache.org/r1533410
Log:
Make this a JavaDoc comment so that checkstyle is happy

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FormatCache.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FormatCache.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FormatCache.java?rev=1533410&r1=1533409&r2=1533410&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FormatCache.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/time/FormatCache.java Fri Oct 18 11:55:22 2013
@@ -125,7 +125,7 @@ abstract class FormatCache<F extends For
         return getInstance(pattern, timeZone, locale);
     }
 
-    /*
+    /**
      * <p>Gets a date/time formatter instance using the specified style,
      * time zone and locale.</p>
      * 
@@ -143,7 +143,7 @@ abstract class FormatCache<F extends For
         return getDateTimeInstance(Integer.valueOf(dateStyle), Integer.valueOf(timeStyle), timeZone, locale);
     }
 
-    /*
+    /**
      * <p>Gets a date formatter instance using the specified style,
      * time zone and locale.</p>
      * 
@@ -160,11 +160,10 @@ abstract class FormatCache<F extends For
         return getDateTimeInstance(Integer.valueOf(dateStyle), null, timeZone, locale);
     }
 
-    /*
+    /**
      * <p>Gets a time formatter instance using the specified style,
      * time zone and locale.</p>
      * 
-     * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
      * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
      * @param timeZone  optional time zone, overrides time zone of
      *  formatted date, null means use default Locale