It might be nitpicky, but I like that all my code is in the form
function() { code }
instead
function() { code }
When Eclipse automatically generates a class for me, it will use the latter format, and so I need to go through and change all the generated methods. Is there anyway to do this so that it automatically places it in the first format? I use java if that matters.
source share