Fix Javadoc.

Java 24 has stricter Javadoc checks.

See #3276
This commit is contained in:
Mark Paluch
2025-05-12 10:42:18 +02:00
parent 3af53e2bc5
commit adf8828560
4 changed files with 9 additions and 9 deletions

View File

@@ -131,7 +131,8 @@
<dependency>
<groupId>io.reactivex.rxjava3</groupId>
<artifactId>rxjava</artifactId>
<version>${rxjava3}</version>
<!-- Javadoc on Java 24 fails otherwise with: Cannot attach type annotations -->
<version>3.1.1</version>
<optional>true</optional>
</dependency>

View File

@@ -72,7 +72,6 @@ public interface AotContext extends EnvironmentCapable {
* Create an {@link AotContext} backed by the given {@link BeanFactory}.
*
* @param beanFactory reference to the {@link BeanFactory}; must not be {@literal null}.
* @return a new instance of {@link AotContext}.
* @param environment reference to the {@link Environment}; must not be {@literal null}.
* @return a new instance of {@link AotContext}.
* @see BeanFactory

View File

@@ -137,7 +137,7 @@ public class CustomConversions {
/**
* Creates a new {@link CustomConversions} instance registering all given user defined converters and selecting
* {@link Converter converters} from {@link StoreConversions} depending on
* {@link StoreConversions#getSimpleTypeHolder() store simple types} only considering those that either convert
* {@link CustomConversions#getSimpleTypeHolder() store simple types} only considering those that either convert
* to/from a store supported type.
*
* @param storeConversions must not be {@literal null}.

View File

@@ -354,12 +354,6 @@ public class RepositoryComposition {
return this.methodLookup;
}
/**
* Value object representing an ordered list of {@link RepositoryFragment fragments}.
*
* @author Mark Paluch
* @author Christoph Strobl
*/
@Override
public boolean equals(Object o) {
@@ -383,6 +377,12 @@ public class RepositoryComposition {
return this.argumentConverter;
}
/**
* Value object representing an ordered list of {@link RepositoryFragment fragments}.
*
* @author Mark Paluch
* @author Christoph Strobl
*/
public static class RepositoryFragments implements Streamable<RepositoryFragment<?>> {
static final RepositoryFragments EMPTY = new RepositoryFragments(Collections.emptyList());