Stephane Bailliez wrote:
>
> I can understand why:
>
> public void setSomething(Object something){
> something = something;
> }
Another solution is
public void setSomething(Object something) {
this.something = something;
}
- Sam Ruby
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
