Hi Anthony,

On Wed, 2005-09-14 at 17:49 -0700, Anthony Green wrote:
>    {
> -    if (tid == null | tid.getReference().get () == null)
> +    if (tid == null || tid.getReference().get () == null)
>        throw new InvalidThreadException (tid.getId ());

Note that in this case, and the case below you still will get a
NullPointerException, not an InvalidThreadException if tid == null.

Cheers,

Mark

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to