From 4a5491e72574ccf6ac52a16429605cd200aa2d53 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Fri, 18 Oct 2013 11:55:22 +0000 Subject: [PATCH] Make this a JavaDoc comment so that checkstyle is happy git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1533410 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/lang3/time/FormatCache.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/time/FormatCache.java b/src/main/java/org/apache/commons/lang3/time/FormatCache.java index 386baf71c..2a105ffdb 100644 --- a/src/main/java/org/apache/commons/lang3/time/FormatCache.java +++ b/src/main/java/org/apache/commons/lang3/time/FormatCache.java @@ -125,7 +125,7 @@ abstract class FormatCache { return getInstance(pattern, timeZone, locale); } - /* + /** *

Gets a date/time formatter instance using the specified style, * time zone and locale.

* @@ -143,7 +143,7 @@ abstract class FormatCache { return getDateTimeInstance(Integer.valueOf(dateStyle), Integer.valueOf(timeStyle), timeZone, locale); } - /* + /** *

Gets a date formatter instance using the specified style, * time zone and locale.

* @@ -160,11 +160,10 @@ abstract class FormatCache { return getDateTimeInstance(Integer.valueOf(dateStyle), null, timeZone, locale); } - /* + /** *

Gets a time formatter instance using the specified style, * time zone and locale.

* - * @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