Martin Cooper wrote:
In any case, I'd prefer to separate the discussion of a set of coding conventions from the discussion on whether or not to automate them around the checkout/checkin process.
+1, I'll table the auto discussion for now.
My only pet peeves on formatting is
no spaces between method names and their parameters
I like:
methodName(params);
I flinch at:
methodName (params);
I can live with any formatting of the variables are their types, speces before, after, none.
Another practice I reciently started is placing fields at the very end of a class definition, after all methods. It makes comparing the class
and it's interface. But since struts doesn't use many interfaces this isn't a must
for me.
-Rob
I think we need to do the former first, and then we can talk more about the latter.
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>