#1639 - Javadoc polishing in preparation of stringer linting in JDK 17.

This commit is contained in:
Oliver Drotbohm
2021-09-21 14:09:47 +02:00
parent 690ea3e967
commit fc99a84439
9 changed files with 22 additions and 22 deletions

View File

@@ -168,7 +168,7 @@ public class CollectionModel<T> extends RepresentationModel<CollectionModel<T>>
* @param content must not be {@literal null}.
* @return
* @since 1.1
* @see #withFallbackType(Class)
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content) {
@@ -182,7 +182,7 @@ public class CollectionModel<T> extends RepresentationModel<CollectionModel<T>>
* @param links the links to be added to the {@link CollectionModel}.
* @return
* @since 1.1
* @see #withFallbackType(Class)
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content, Link... links) {
@@ -196,7 +196,7 @@ public class CollectionModel<T> extends RepresentationModel<CollectionModel<T>>
* @param links the links to be added to the {@link CollectionModel}.
* @return
* @since 1.1
* @see #withFallbackType(Class)
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content, Iterable<Link> links) {