mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 20:05:01 +07:00
GitOrigin-RevId: 5278e8f5a9bcc8ec6bb88a897c414242a9f19048
10 lines
160 B
Java
10 lines
160 B
Java
// "Put array elements on separate lines" "true-preview"
|
|
|
|
class X {
|
|
|
|
String[] ss = new String[] {
|
|
"one",
|
|
"two",
|
|
"three"
|
|
};
|
|
} |