Possible Duplicate:
What does two consecutive blocks of code {}{} do?
I am reworking a very old Java application and have observed that the original developer used a lot of compound statements within methods that are not part of any conditional or looping logic.
Example pseudocode:
{
Object a = new Object();
a.setAttribute();
}
{
Object b = new Object();
b.setAttribute();
}
Is this just a style preference or am I missing something?