Skip to content

Commit 047b6be

Browse files
committed
Polishing.
Tiny naming tweaks. See #3041 Original pull request: #3048
1 parent 9d73853 commit 047b6be

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/main/java/org/springframework/data/mapping/model/KotlinValueUtils.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,14 @@ public static ValueBoxing getConstructorValueHierarchy(KParameter parameter) {
7575
public static ValueBoxing getConstructorValueHierarchy(Class<?> cls) {
7676

7777
KClass<?> kotlinClass = JvmClassMappingKt.getKotlinClass(cls);
78-
KType kType = extractKType(kotlinClass);
79-
return new ValueBoxing(BoxingRules.CONSTRUCTOR, kType, kotlinClass, false);
78+
return new ValueBoxing(BoxingRules.CONSTRUCTOR, typeOf(kotlinClass), kotlinClass, false);
8079
}
8180

8281
/**
8382
* Get the {@link KType} for a given {@link KClass} and potentially fill missing generic type arguments with
8483
* {@link KTypeProjection#star} to prevent Kotlin internal checks to fail.
85-
*
86-
* @param kotlinClass
87-
* @return
8884
*/
89-
private static KType extractKType(KClass<?> kotlinClass) {
85+
private static KType typeOf(KClass<?> kotlinClass) {
9086

9187
return kotlinClass.getTypeParameters().isEmpty() ? Reflection.typeOf(kotlinClass)
9288
: Reflection.typeOf(JvmClassMappingKt.getJavaClass(kotlinClass), stubKTypeProjections(kotlinClass));

0 commit comments

Comments
 (0)