Repository: commons-lang Updated Branches: refs/heads/master ae91ab56a -> be21e8fc3
Sort JavaDoc tags Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/be21e8fc Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/be21e8fc Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/be21e8fc Branch: refs/heads/master Commit: be21e8fc35f564abe742026bc234d3bc59e84bf4 Parents: ae91ab5 Author: Benedikt Ritter <[email protected]> Authored: Sun Sep 11 17:10:38 2016 +0200 Committer: Benedikt Ritter <[email protected]> Committed: Sun Sep 11 17:10:38 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/commons/lang3/time/DatePrinter.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/be21e8fc/src/main/java/org/apache/commons/lang3/time/DatePrinter.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/time/DatePrinter.java b/src/main/java/org/apache/commons/lang3/time/DatePrinter.java index 5bf393b..342405a 100644 --- a/src/main/java/org/apache/commons/lang3/time/DatePrinter.java +++ b/src/main/java/org/apache/commons/lang3/time/DatePrinter.java @@ -65,11 +65,11 @@ public interface DatePrinter { /** * <p>Formats a millisecond {@code long} value into the * supplied {@code StringBuffer}.</p> - * @deprecated Use {{@link #format(long, Appendable)}. * * @param millis the millisecond value to format * @param buf the buffer to format into * @return the specified string buffer + * @deprecated Use {{@link #format(long, Appendable)}. */ @Deprecated StringBuffer format(long millis, StringBuffer buf); @@ -77,11 +77,11 @@ public interface DatePrinter { /** * <p>Formats a {@code Date} object into the * supplied {@code StringBuffer} using a {@code GregorianCalendar}.</p> - * @deprecated Use {{@link #format(Date, Appendable)}. * * @param date the date to format * @param buf the buffer to format into * @return the specified string buffer + * @deprecated Use {{@link #format(Date, Appendable)}. */ @Deprecated StringBuffer format(Date date, StringBuffer buf); @@ -91,11 +91,11 @@ public interface DatePrinter { * The TimeZone set on the Calendar is only used to adjust the time offset. * The TimeZone specified during the construction of the Parser will determine the TimeZone * used in the formatted string. - * @deprecated Use {{@link #format(Calendar, Appendable)}. * * @param calendar the calendar to format * @param buf the buffer to format into * @return the specified string buffer + * @deprecated Use {{@link #format(Calendar, Appendable)}. */ @Deprecated StringBuffer format(Calendar calendar, StringBuffer buf); @@ -167,13 +167,12 @@ public interface DatePrinter { /** * <p>Formats a {@code Date}, {@code Calendar} or * {@code Long} (milliseconds) object.</p> - * - * See {@link java.text.DateFormat#format(Object, StringBuffer, FieldPosition)} - * + * * @param obj the object to format * @param toAppendTo the buffer to append to * @param pos the position - ignored * @return the buffer passed in + * @see java.text.DateFormat#format(Object, StringBuffer, FieldPosition) */ StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos); }
