Skip to content

Commit 05877f1

Browse files
committed
Javadoc @SInCE tag should be after @return and @throws
1 parent 153f969 commit 05877f1

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/main/java/org/apache/commons/lang3/concurrent/AtomicInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
* {@link LazyInitializer} is more appropriate.
6363
* </p>
6464
*
65-
* @since 3.0
6665
* @param <T> the type of the object managed by this initializer class
66+
* @since 3.0
6767
*/
6868
public class AtomicInitializer<T> extends AbstractConcurrentInitializer<T, ConcurrentException> {
6969

src/main/java/org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
* case.
5252
* </p>
5353
*
54-
* @since 3.0
5554
* @param <T> the type of the object managed by this initializer class
55+
* @since 3.0
5656
*/
5757
public class AtomicSafeInitializer<T> extends AbstractConcurrentInitializer<T, ConcurrentException> {
5858

src/main/java/org/apache/commons/lang3/concurrent/BackgroundInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
* operation is complete or to cancel the operation.
8383
* </p>
8484
*
85-
* @since 3.0
8685
* @param <T> the type of the object managed by this initializer class
86+
* @since 3.0
8787
*/
8888
public class BackgroundInitializer<T> extends AbstractConcurrentInitializer<T, Exception> {
8989

src/main/java/org/apache/commons/lang3/concurrent/CallableBackgroundInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
* }
6262
* </pre>
6363
*
64-
* @since 3.0
6564
* @param <T> the type of the object managed by this initializer class
65+
* @since 3.0
6666
*/
6767
public class CallableBackgroundInitializer<T> extends BackgroundInitializer<T> {
6868
/** The Callable to be executed. */

src/main/java/org/apache/commons/lang3/concurrent/ConcurrentInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
* An implementation throws {@link ConcurrentException} if an error occurred during initialization of the object.
3838
* </p>
3939
*
40-
* @since 3.0
4140
* @param <T> the type of the object managed by this initializer class.
41+
* @since 3.0
4242
*/
4343
public interface ConcurrentInitializer<T> extends FailableSupplier<T, ConcurrentException> {
4444
// empty

src/main/java/org/apache/commons/lang3/concurrent/ConstantInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
* {@link ConcurrentInitializer}.
3434
* </p>
3535
*
36-
* @since 3.0
3736
* @param <T> the type of the object managed by this initializer
37+
* @since 3.0
3838
*/
3939
public class ConstantInitializer<T> implements ConcurrentInitializer<T> {
4040

src/main/java/org/apache/commons/lang3/concurrent/LazyInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
* method are pretty fast because no synchronization is needed (only an access to a <strong>volatile</strong> member field).
6767
* </p>
6868
*
69-
* @since 3.0
7069
* @param <T> the type of the object managed by the initializer.
70+
* @since 3.0
7171
*/
7272
public class LazyInitializer<T> extends AbstractConcurrentInitializer<T, ConcurrentException> {
7373

src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,9 +1203,9 @@ public StringBuffer format(final long millis, final StringBuffer buf) {
12031203
/**
12041204
* Formats a {@link Date}, {@link Calendar} or
12051205
* {@link Long} (milliseconds) object.
1206-
* @since 3.5
12071206
* @param obj the object to format
12081207
* @return The formatted value.
1208+
* @since 3.5
12091209
*/
12101210
String format(final Object obj) {
12111211
if (obj instanceof Date) {

0 commit comments

Comments
 (0)