IDEA-51514 Move statement to move lines in multiline Groovy string literals
[fedora-idea.git] / plugins / groovy / testdata / groovy / codeStyle / synch1.test
blobd49892a72e057f6132d7ef310335f52c0d4ba525
1 <option>BRACE_STYLE=NEXT_LINE</option>
2 <option>SPACE_BEFORE_SYNCHRONIZED_PARENTHESES=false</option>
3 <option>SPACE_WITHIN_SYNCHRONIZED_PARENTHESES=true</option>
4 synchronized    (   monitor)     {
5     for (i in 1..10) println i
7 -----
8 synchronized( monitor )
10   for (i in 1..10) println i