Sam Ruby wrote:

> 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;
> }


Just beware of this bug:

public void setSomething(Object somthing) { // something misspelled
     this.something = something;
}





-- 

"They that give up essential liberty to obtain a little temporary safety
  deserve neither liberty nor safety."
                 - Benjamin Franklin


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to