[java-inspections] DeferFinalAssignmentFix: ModCommand

GitOrigin-RevId: b71aaf9098c2d60e69b63c18408845492918dc65
This commit is contained in:
Tagir Valeev
2023-07-06 18:26:03 +02:00
committed by intellij-monorepo-bot
parent 090e1b85cf
commit 001d26930f
10 changed files with 44 additions and 101 deletions

View File

@@ -4,10 +4,10 @@ import java.io.*;
class a {
final int n;
a(InputStream in) {
int n1;
int n1<caret>;
if (in==null) {
n1 = 2;
<caret>n1 = 2;
n1 = 2;
int h = n1;
}
else {