provide remove assignment fix for silly assignment inspection (IDEA-125993)

This commit is contained in:
Anna Kozlova
2014-06-06 13:57:02 +04:00
parent 54e38eed37
commit de7387fd40
9 changed files with 223 additions and 127 deletions
@@ -0,0 +1,7 @@
// "Remove redundant assignment" "true"
class A {
{
String ss = "";
}
}
@@ -0,0 +1,8 @@
// "Remove redundant assignment" "true"
class A {
{
String ss = "";
s<caret>s = ss;
}
}