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 434fd79 commit 483105aCopy full SHA for 483105a
spring-data-mongodb/src/main/kotlin/org/springframework/data/mongodb/core/query/NestedProperty.kt
@@ -20,11 +20,11 @@ import kotlin.reflect.KProperty
20
import kotlin.reflect.KProperty1
21
22
/**
23
- * Nested property to generate MongoDB field name.
+ * Nested property to generate Mongo field name.
24
*/
25
class NestedProperty<T, U>(
26
- val parent: KProperty<T>,
27
- val child: KProperty1<T, U>
+ internal val parent: KProperty<T>,
+ internal val child: KProperty1<T, U>
28
) : KProperty<U> by child
29
30
fun nestedFieldName(property: KProperty<*>): String {
0 commit comments