Is this :
String function() { return someString; }
Any different than this ?
String function() { return(someString); }
Its the return I'm interested in. I see the 2nd style less frequently, is it just convention or is the return in parenthesis actually doing something different?