Would there be any sort of difference using brackets or not using brackets? Is one faster than the other? Or are they both pretty much the same?
No brackets:
if(codehere == codehere)
return;
Brackets:
if(codehere == codehere) {
return;
}
I'm not new to Java, but I was just curious is there was any sort of performance difference.
Sorry if this is the wrong place to post this.