File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
spring-core/src/main/java/org/springframework/core Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,9 @@ public static Publisher<?> invokeSuspendingFunction(
128
128
Object arg = args [index ];
129
129
if (!(parameter .isOptional () && arg == null )) {
130
130
KType type = parameter .getType ();
131
- if (!(type .isMarkedNullable () && arg == null ) && type .getClassifier () instanceof KClass <?> kClass
132
- && KotlinDetector .isInlineClass (JvmClassMappingKt .getJavaClass (kClass ))) {
131
+ if (!(type .isMarkedNullable () && arg == null ) &&
132
+ type .getClassifier () instanceof KClass <?> kClass &&
133
+ KotlinDetector .isInlineClass (JvmClassMappingKt .getJavaClass (kClass ))) {
133
134
KFunction <?> constructor = KClasses .getPrimaryConstructor (kClass );
134
135
if (!KCallablesJvm .isAccessible (constructor )) {
135
136
KCallablesJvm .setAccessible (constructor , true );
You can’t perform that action at this time.
0 commit comments