[mod-commands] Use RenamerFactory when executing rename to make it more similar to normal rename

Provide an interface to specify suggested names from outside
Still part of IDEA-338334

GitOrigin-RevId: 7bb09b7150b463ed8a0c24453c968d60d9e716fa
This commit is contained in:
Tagir Valeev
2023-11-23 10:39:44 +01:00
committed by intellij-monorepo-bot
parent 59074e21c9
commit 853a7a46fc
25 changed files with 127 additions and 112 deletions

View File

@@ -4,7 +4,7 @@ import java.io.*;
class a {
void f(InputStream in) {
final int n;
int n1<caret>;
int <caret>n1;
try {
n1 = in.read();
} catch (IOException e) {