Skip to content

Commit db6786c

Browse files
authored
* Fix since on new isKotlinUnit() API
1 parent 14caf0f commit db6786c

File tree

1 file changed

+1
-1
lines changed
  • spring-integration-core/src/main/java/org/springframework/integration/util

1 file changed

+1
-1
lines changed

spring-integration-core/src/main/java/org/springframework/integration/util/ClassUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public static boolean isKotlinFaction1(Class<?> aClass) {
268268
* Check if class is {@code kotlin.Unit}.
269269
* @param aClass the {@link Class} to check.
270270
* @return true if class is a {@code kotlin.Unit} implementation.
271-
* @since 5.4
271+
* @since 5.3.2
272272
*/
273273
public static boolean isKotlinUnit(Class<?> aClass) {
274274
return KOTLIN_UNIT_CLASS != null && KOTLIN_UNIT_CLASS.isAssignableFrom(aClass);

0 commit comments

Comments
 (0)