> -----Original Message-----
> From: Jeff Turner [mailto:[EMAIL PROTECTED]]
[...]
> We had that discussion once on Commons, and many people liked the
> underscore convention.
I can understand why:
public void setSomething(Object something){
something = something;
}
It is one of my major source of error when not using the '_' and I have seen
the error several times along with variable naming gymnastics to avoid the
this. people would use aSomething or theSomething or whatever. That look
crappy in the Javadoc.
is in the same group as the no-brace:
if (condition) <...180 col...> uWillNeverFindMe();
doSomething();
or
if (condition)
doSomething();
doSomethingToConfuseMe();
But whatever the pain is: I'm following the code conventions established
here.
"When in Rome do as the Romans do."
I'm the lucky user of Intellij IDEA which has a code layout feature that
allows to reformat the whole code in a snap w/ specific code style,
reorganize imports and remove useless one. I'm using this extensively and
this is damn cool.
Stephane
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>