From 87a89c216c6eb7e6362ddfdace430f9578bd0df8 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 25 Jul 2016 14:21:19 +0200 Subject: [PATCH] Javadoc revision --- .../core/ReactiveAdapterRegistry.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java b/spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java index 06d9edeba0..c6287f4243 100644 --- a/spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java +++ b/spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java @@ -38,7 +38,7 @@ import org.springframework.util.ClassUtils; * *

By default there are adapters for {@link CompletableFuture}, RxJava 1, and * also for a any Reactive Streams {@link Publisher}. Additional adapters can be - * registered via {@link #registerFluxAdapter) and {@link #registerMonoAdapter}. + * registered via {@link #registerFluxAdapter} and {@link #registerMonoAdapter}. * * @author Rossen Stoyanchev * @since 5.0 @@ -76,9 +76,9 @@ public class ReactiveAdapterRegistry { /** - * Register an adapter for adapting to and from a {@link Mono}. The provided - * functions can assume that input will never be {@code null} and also that - * any {@link Optional} wrapper is unwrapped. + * Register an adapter for adapting to and from a {@link Mono}. + *

The provided functions can assume that input will never be {@code null} + * and also that any {@link Optional} wrapper is unwrapped. */ public void registerMonoAdapter(Class adapteeType, Function> toAdapter, Function, Object> fromAdapter, ReactiveAdapter.Descriptor descriptor) { @@ -87,9 +87,9 @@ public class ReactiveAdapterRegistry { } /** - * Register an adapter for adapting to and from a {@link Flux}. The provided - * functions can assume that input will never be {@code null} and also that - * any {@link Optional} wrapper is unwrapped. + * Register an adapter for adapting to and from a {@link Flux}. + *

The provided functions can assume that input will never be {@code null} + * and also that any {@link Optional} wrapper is unwrapped. */ public void registerFluxAdapter(Class adapteeType, Function> toAdapter, Function, Object> fromAdapter) {