blob: 87b6763d27c056978341fee7da5932c66703d0c9 [file] [log] [blame]
<option>BRACE_STYLE=END_OF_LINE</option>
<option>FINALLY_ON_NEW_LINE=false</option>
<option>CATCH_ON_NEW_LINE=true</option>
try {foo()}
catch (E e) {} finally {bar()}
-----
try {
foo()
}
catch (E e) {
} finally {
bar()
}