Skip to content

Commit 1d02dd2

Browse files
committed
Fix Javadoc.
Java 24 has stricter Javadoc checks. See #3276
1 parent 5c858e8 commit 1d02dd2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@
131131
<dependency>
132132
<groupId>io.reactivex.rxjava3</groupId>
133133
<artifactId>rxjava</artifactId>
134-
<version>${rxjava3}</version>
134+
<!-- Javadoc on Java 24 fails otherwise with: Cannot attach type annotations -->
135+
<version>3.1.1</version>
135136
<optional>true</optional>
136137
</dependency>
137138

src/main/java/org/springframework/data/aot/AotContext.java

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ static AotContext from(BeanFactory beanFactory) {
7272
* Create an {@link AotContext} backed by the given {@link BeanFactory}.
7373
*
7474
* @param beanFactory reference to the {@link BeanFactory}; must not be {@literal null}.
75-
* @return a new instance of {@link AotContext}.
7675
* @param environment reference to the {@link Environment}; must not be {@literal null}.
7776
* @return a new instance of {@link AotContext}.
7877
* @see BeanFactory

src/main/java/org/springframework/data/convert/CustomConversions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public CustomConversions(ConverterConfiguration converterConfiguration) {
137137
/**
138138
* Creates a new {@link CustomConversions} instance registering all given user defined converters and selecting
139139
* {@link Converter converters} from {@link StoreConversions} depending on
140-
* {@link StoreConversions#getSimpleTypeHolder() store simple types} only considering those that either convert
140+
* {@link CustomConversions#getSimpleTypeHolder() store simple types} only considering those that either convert
141141
* to/from a store supported type.
142142
*
143143
* @param storeConversions must not be {@literal null}.

src/main/java/org/springframework/data/repository/core/support/RepositoryComposition.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -354,12 +354,6 @@ public MethodLookup getMethodLookup() {
354354
return this.methodLookup;
355355
}
356356

357-
/**
358-
* Value object representing an ordered list of {@link RepositoryFragment fragments}.
359-
*
360-
* @author Mark Paluch
361-
* @author Christoph Strobl
362-
*/
363357
@Override
364358
public boolean equals(Object o) {
365359

@@ -383,6 +377,12 @@ public BiFunction<Method, Object[], Object[]> getArgumentConverter() {
383377
return this.argumentConverter;
384378
}
385379

380+
/**
381+
* Value object representing an ordered list of {@link RepositoryFragment fragments}.
382+
*
383+
* @author Mark Paluch
384+
* @author Christoph Strobl
385+
*/
386386
public static class RepositoryFragments implements Streamable<RepositoryFragment<?>> {
387387

388388
static final RepositoryFragments EMPTY = new RepositoryFragments(Collections.emptyList());

0 commit comments

Comments
 (0)