mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 17:07:05 +07:00
redundant assignment in arg list fixed (IDEA-126190)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove redundant assignment" "true"
|
||||
class Test {
|
||||
void foo() {
|
||||
String var;
|
||||
this.bar("someString");
|
||||
}
|
||||
|
||||
void bar(String arg) {
|
||||
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Remove redundant assignment" "true"
|
||||
class Test {
|
||||
void foo() {
|
||||
String var;
|
||||
this.bar(v<caret>ar = "someString");
|
||||
}
|
||||
|
||||
void bar(String arg) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user