From f835ce6959635543ec28818637dc77979793806d Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sat, 5 Sep 2020 15:22:33 +0100 Subject: [PATCH] Fix javadocs with jdk11 - Forward port #863 --- .../statemachine/support/StateMachineInterceptorList.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-statemachine-core/src/main/java/org/springframework/statemachine/support/StateMachineInterceptorList.java b/spring-statemachine-core/src/main/java/org/springframework/statemachine/support/StateMachineInterceptorList.java index 605486ac..dbe9f2f5 100644 --- a/spring-statemachine-core/src/main/java/org/springframework/statemachine/support/StateMachineInterceptorList.java +++ b/spring-statemachine-core/src/main/java/org/springframework/statemachine/support/StateMachineInterceptorList.java @@ -41,7 +41,7 @@ public class StateMachineInterceptorList { * Sets the interceptors, clears any existing interceptors. * * @param interceptors the list of interceptors - * @return true if interceptor list changed as a result of the + * @return {@code true} if interceptor list changed as a result of the * call */ public boolean set(List> interceptors) { @@ -55,7 +55,7 @@ public class StateMachineInterceptorList { * Adds interceptor to the list. * * @param interceptor the interceptor - * @return true (as specified by {@link Collection#add}) + * @return {@code true} (as specified by {@link Collection#add}) */ public boolean add(StateMachineInterceptor interceptor) { return interceptors.add(interceptor); @@ -65,7 +65,7 @@ public class StateMachineInterceptorList { * Removes interceptor from the list. * * @param interceptor the interceptor - * @return true (as specified by {@link Collection#remove}) + * @return {@code true} (as specified by {@link Collection#remove}) */ public boolean remove(StateMachineInterceptor interceptor) { return interceptors.remove(interceptor);