mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
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:
@@ -1,10 +0,0 @@
|
||||
// "Split into separate declarations" "true"
|
||||
class Test {
|
||||
{
|
||||
String foo = "foo";//c1
|
||||
//c2
|
||||
//c3
|
||||
String bar = "bar";
|
||||
String baz = "baz";
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
// "Split into separate declarations" "true"
|
||||
class Test {
|
||||
{
|
||||
String foo <caret>= "foo",
|
||||
//c1
|
||||
bar = "bar",//c2
|
||||
baz = "baz"; //c3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user