public void setValue(String value) {
this.value = value.intern();
}sets the this.value to a pooled String? I am trying to avoid a separate call to intern() after setting the value. Thanks.
Michael McGrady
LEGAL NOTICE
public void setValue(String value) {
this.value = value.intern();
}