Skip to content

Commit 07b3382

Browse files
[issue-1399] fix: update deprecation message for DataRow.get method
The deprecation message for `DataRow.get(ColumnReference)` was successfully updated to simplify its content, specifically removing mentions of `perRowCol` and a URL, while retaining that `col[row]` is still available. However, the project build failed due to an external dependency issue unrelated to the code changes.
1 parent 4bfe272 commit 07b3382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/util/deprecationMessages.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ internal const val DEPRECATED_ACCESS_API =
210210
"It's recommended to migrate to the String or Extension Properties Access API https://kotlin.github.io/dataframe/apilevels.html"
211211

212212
internal const val DEPRECATED_DATA_ROW_COLUMN_REFERENCE_GET =
213-
"Accessing a DataRow by ColumnReference (row[col]) is deprecated. Prefer String or extension property access (e.g., row[\"name\"] or row.name). In perRowCol { row, col -> ... }, use the reverse indexing col[row], which remains supported. See https://kotlin.github.io/dataframe/apilevels.html"
213+
"Accessing a DataRow by ColumnReference (row[col]) is deprecated. Prefer String or extension property access (e.g., row[\"name\"] or row.name). The reverse indexing col[row] remains supported."
214214

215215
internal const val IDENTITY_FUNCTION = "This overload is an identity function and can be omitted."
216216

0 commit comments

Comments
 (0)