File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/codeGen Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ internal object MarkersExtractor {
75
75
private fun getFields (markerClass : KClass <* >, nullableProperties : Boolean ): List <GeneratedField > {
76
76
val order = getPropertyOrderFromPrimaryConstructor(markerClass) ? : emptyMap()
77
77
val structuralProperties = markerClass.memberProperties.filter { ! it.hasAnnotation<ScopeProperty >() }
78
- return structuralProperties.sortedBy { order[it.name] ? : Int .MAX_VALUE }.mapIndexed { _, it ->
78
+ return structuralProperties.sortedBy { order[it.name] ? : Int .MAX_VALUE }.map {
79
79
val fieldName = ValidFieldName .of(it.name)
80
80
val columnName = it.findAnnotation<ColumnName >()?.name ? : fieldName.unquoted
81
81
val type = it.returnType
You can’t perform that action at this time.
0 commit comments