The Checkstyle Terrorist
Hi there!
In my company we're now forced to use checkstyle for java projects in Eclipse. Amongst the ~100 mostly totally stupid checks it does, is also one forcing brackets to reside on the end of a line, as in:
if(bSomething) {
doSomething();
}
Few things I hate more ![]()
Here's my tried & tested workaround:
if(bSomething
) {
doSomething();
}
![]()
Greetings,
Manuel

4 Comments
Recommended Comments