java code reformat change
I've just started looking at the eap (using build 3378) and was
wondering why the reformatting of sychronized blocks has changed.
You used to be able to reformat and get:
synchronized ( someObject )
{
some code .....
}
But now reformat seems to be treating the braces as continuation marks
and I keep getting:
synchronized ( someObject )
{
some code .....
}
I don't want to change my coninuation offset since I like it everywhere
else, am I missing something?
Guy
Please sign in to leave a comment.
Guy Gascoigne-Piggford wrote:
I think that's this bug: http://www.jetbrains.net/jira/browse/IDEA-2727
Bas