Skip to content

Commit fc05f18

Browse files
committed
Avoid using internal Kotlin types in Java to avoid Javadoc failures.
1 parent 3cbdefd commit fc05f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/springframework/data/core/MemberDescriptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ public ResolvableType getType() {
200200
/**
201201
* Value object describing a Kotlin property in the context of an owning class.
202202
*/
203-
record KPropertyPathDescriptor(KPropertyReferenceImpl<?, ?> property) implements KotlinMemberDescriptor {
203+
record KPropertyPathDescriptor(KProperty1<?, ?> property) implements KotlinMemberDescriptor {
204204

205-
static KPropertyPathDescriptor create(KPropertyReferenceImpl<?, ?> propertyReference) {
205+
static KPropertyPathDescriptor create(KProperty1<?, ?> propertyReference) {
206206
return new KPropertyPathDescriptor(propertyReference);
207207
}
208208

0 commit comments

Comments
 (0)