IG: merge two inspections and enable at INFORMATION level (IDEA-30715)

merging "Multiple variables in one declaration" and "Multiple typed variables in one declaration" inspections
This commit is contained in:
Bas Leijdekkers
2019-04-02 16:29:31 +02:00
parent 5af7c99c9a
commit fc1cc50ff9
27 changed files with 364 additions and 474 deletions

View File

@@ -1,10 +0,0 @@
// "Split into separate declarations" "true"
class Test {
{
String foo = "foo";//c1
//c2
//c3
String bar = "bar";
String baz = "baz";
}
}

View File

@@ -1,9 +0,0 @@
// "Split into separate declarations" "true"
class Test {
{
String foo <caret>= "foo",
//c1
bar = "bar",//c2
baz = "baz"; //c3
}
}