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
This commit is contained in:
Benedikt Ritter 2013-10-18 11:55:22 +00:00
parent 227946134c
commit 4a5491e725
1 changed files with 3 additions and 4 deletions

View File

@ -125,7 +125,7 @@ abstract class FormatCache<F extends Format> {
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 Format> {
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 Format> {
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