mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Rename.
This commit is contained in:
@@ -144,7 +144,7 @@ public class AsyncArrayTableModel extends AbstractTableModel {
|
||||
return myRows;
|
||||
}
|
||||
|
||||
public void forcedChange(int row, int col, Object value) {
|
||||
public void changeValue(int row, int col, Object value) {
|
||||
Future<Object[][]> chunk = myChunkCache.getIfPresent(itemToChunkKey(row, col));
|
||||
if (chunk != null && chunk.isDone()) {
|
||||
try {
|
||||
|
||||
@@ -514,7 +514,7 @@ public class NumpyArrayTable {
|
||||
protected void run(@NotNull Result result) throws Throwable {
|
||||
if (getEditor().getEditor() != null) {
|
||||
getEditor().getEditor().getDocument().setText(corrected);
|
||||
((AsyncArrayTableModel)myTable.getModel()).forcedChange(row, col, corrected);
|
||||
((AsyncArrayTableModel)myTable.getModel()).changeValue(row, col, corrected);
|
||||
cancelEditing();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user