I've been given Java code by others which use curly braces on new lines, and I'd like them on the same line after I import the file without having to change them line-by-line?
How do I do it?
private void someMethod()
{
//Some code here
}
I want it to look like this:
private void someMethod(){
//The same code
}
Thanks!