mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
normalize declaration: don't include tree next after space
This commit is contained in:
@@ -3,6 +3,8 @@ class Test {
|
||||
{
|
||||
String foo = "foo";//c1
|
||||
//c2
|
||||
//c3
|
||||
String bar = "bar";
|
||||
String baz = "baz";
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,9 @@
|
||||
// "Split into separate declarations" "true"
|
||||
class Test {
|
||||
{
|
||||
String foo <caret>= "foo",//c1
|
||||
bar = "bar";//c2
|
||||
String foo <caret>= "foo",
|
||||
//c1
|
||||
bar = "bar",//c2
|
||||
baz = "baz"; //c3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user