We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cbdefd commit fc05f18Copy full SHA for fc05f18
src/main/java/org/springframework/data/core/MemberDescriptor.java
@@ -200,9 +200,9 @@ public ResolvableType getType() {
200
/**
201
* Value object describing a Kotlin property in the context of an owning class.
202
*/
203
- record KPropertyPathDescriptor(KPropertyReferenceImpl<?, ?> property) implements KotlinMemberDescriptor {
+ record KPropertyPathDescriptor(KProperty1<?, ?> property) implements KotlinMemberDescriptor {
204
205
- static KPropertyPathDescriptor create(KPropertyReferenceImpl<?, ?> propertyReference) {
+ static KPropertyPathDescriptor create(KProperty1<?, ?> propertyReference) {
206
return new KPropertyPathDescriptor(propertyReference);
207
}
208
0 commit comments