Hi,
Just looking into some of the great work that's taking place here and
noticed the following which someone may be able to enlighten me about...?
I see in most (all?) methods the parameters are set to final, for example
see below. What's the advantage(s) of this? And if it is so advantagous why
is it not done more often?
Thx for any clarification
/c
<snip>
/**
* Remove a parameter from the parameters object
* @param name a <code>String</code> value
*/
public void removeParameter( final String name )
{
setParameter( name, null );
}
</snip>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>