You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/Utils.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -370,7 +370,7 @@ internal fun KCallable<*>.isGetterLike(): Boolean =
370
370
371
371
/** Returns the column name for this callable.
372
372
* If the callable contains the [ColumnName][org.jetbrains.kotlinx.dataframe.annotations.ColumnName] annotation, its [ColumnName.name][org.jetbrains.kotlinx.dataframe.annotations.ColumnName.name] is returned.
373
-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */
373
+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */
374
374
@PublishedApi
375
375
internalvalKFunction<*>.columnName:String
376
376
get() = findAnnotation<ColumnName>()?.name
@@ -381,15 +381,15 @@ internal val KFunction<*>.columnName: String
381
381
382
382
/** Returns the column name for this callable.
383
383
* If the callable contains the [ColumnName][org.jetbrains.kotlinx.dataframe.annotations.ColumnName] annotation, its [ColumnName.name][org.jetbrains.kotlinx.dataframe.annotations.ColumnName.name] is returned.
384
-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction]. */
384
+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction]. */
385
385
@PublishedApi
386
386
internalvalKProperty<*>.columnName:String
387
387
get() = findAnnotation<ColumnName>()?.name ?: name
388
388
389
389
/**
390
390
* Returns the column name for this callable.
391
391
* If the callable contains the [ColumnName] annotation, its [ColumnName.name] is returned.
392
-
* Otherwise, the name of the callable is returned with proper getter-trimming iff it's a [KFunction].
392
+
* Otherwise, the name of the callable is returned with proper getter-trimming if it's a [KFunction].
0 commit comments