From 05a6beba76b3195b26f2b15919d4f3a95b22c580 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sun, 11 Sep 2016 17:17:16 +0200 Subject: [PATCH] Sort JavaDoc tags --- .../org/apache/commons/lang3/time/FastDateFormat.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java b/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java index 15dab8d8f..688830cf8 100644 --- a/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java +++ b/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java @@ -448,12 +448,12 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { /** *

Formats a millisecond {@code long} value into the * supplied {@code StringBuffer}.

- * @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 * @since 2.1 + * @deprecated Use {{@link #format(long, Appendable)}. */ @Deprecated @Override @@ -464,11 +464,11 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { /** *

Formats a {@code Date} object into the * supplied {@code StringBuffer} using a {@code GregorianCalendar}.

- * @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 @Override @@ -479,11 +479,11 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { /** *

Formats a {@code Calendar} object into the * supplied {@code StringBuffer}.

- * @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 @Override @@ -658,11 +658,11 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { /** *

Performs the formatting by applying the rules to the * specified calendar.

- * @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 protected StringBuffer applyRules(final Calendar calendar, final StringBuffer buf) {