Name: tb29552 Date: 09/27/2000
Reported by ###@###.###:
This is in the GUI Debug Tool:
> Here's a small bug fix for a NullPointerException dumping an object
> which has a null field:
>
> CommandInterpreter.java:
> 1268c1268,1269
> < out.println(obj.getValue(field).toString());
> ---
> > Object o = obj.getValue(field);
> > out.println((o == null) ? "null" : o.toString());
======================================================================