Document parameter type change in DataGrid.showCell (#1096)

The method is used only by one plugin https://plugins.jetbrains.com/plugin/20941-tree-view-by-default
And that plugin already was already recompiled and new version was released
This commit is contained in:
Liudmila Kornilova 2023-08-14 17:43:16 +02:00 committed by GitHub
parent 5df079fdd7
commit 2d9a169644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,6 +99,9 @@ Specify `displayName`/`key` for `Configurable`
`com.intellij.database.dataSource.DataSourceStorageCore$Listener` class renamed to `com.intellij.database.dataSource.DataSourceStorage$Listener`
: `Core` class removed from hierarchy.
`com.intellij.database.datagrid.CoreGrid(ModelIndex<Row>, ModelIndex<Column>)` method parameter type changed from `ModelIndex<Row>` to `int`
: `ModelIndex` class is used to reference data in table model. Row indexes in table model start with 0 even when table is scrolled to page N > 1. Parameter type was changed to int to indicate that it is an absolute index in db table.
### Maven Plugin 2023.2
`org.jetbrains.idea.maven.server.MavenEmbedderWrapper.customizeForResolve(MavenConsole, MavenProgressIndicator)` method removed