Skip to content

Commit 3e3b5ec

Browse files
Automated commit of generated code
1 parent 78795e5 commit 3e3b5ec

File tree

1 file changed

+1
-1
lines changed
  • core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/codeGen

1 file changed

+1
-1
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/codeGen/MarkersExtractor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ internal object MarkersExtractor {
5555

5656
private fun getFields(markerClass: KClass<*>, nullableProperties: Boolean): List<GeneratedField> {
5757
val order = getPropertyOrderFromPrimaryConstructor(markerClass) ?: emptyMap()
58-
val structuralProperties = markerClass.memberProperties.filter { it.findAnnotation<ScopeProperty>() == null }
58+
val structuralProperties = markerClass.memberProperties.filter { it.hasAnnotation<ScopeProperty>() }
5959
return structuralProperties.sortedBy { order[it.name] ?: Int.MAX_VALUE }.mapIndexed { _, it ->
6060
val fieldName = ValidFieldName.of(it.name)
6161
val columnName = it.findAnnotation<ColumnName>()?.name ?: fieldName.unquoted

0 commit comments

Comments
 (0)