why do most people use brackets in this way when it comes to Java. Pospular IDEs also use this method by default
class Test{
public void test(){
}
}
than this way
class Test
{
public void test()
{
}
}
The second method is obviously easier to read.