I prefer Allman-style braces, for example:
if (foo)
{
// magical prancing unicorn stuff
}
rather than:
if (foo) {
// unmagical boring pony things
}
The Java formatter in Eclipse handles this pretty well, except for empty code blocks, which it formats like this:
SomeDefaultCtor()
{}
I'd like to use this special format for empty blocks instead:
SomeDefaultCtor() {}
Is there any way to tell Eclipse to leave braces on the same line when the braces surround an empty code block? So far, I can't see one:

