mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
extract method: adjust params to be final in case of local classes (IDEA-97253)
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@ class A {
|
||||
System.out.println("");
|
||||
}
|
||||
|
||||
private boolean newMethod(int abc, boolean b) {
|
||||
private boolean newMethod(final int abc, boolean b) {
|
||||
if (b) {
|
||||
class T {
|
||||
void bar() {
|
||||
|
||||
Reference in New Issue
Block a user