I don't see this being asked before but link me if I am wrong. Is there a setting in Eclipse to add a blank line between code blocks such as if statements for Java? Sorry, I am new to using Eclipse. I am using Eclipse Oxygen.3a Release (4.7.3a)
So:
//code
if(true){
//if code
}
//next code
would be:
//code
if(true){
//new code
}
//next code