At 12:02 PM 4/2/01 -0700, Institutional Man wrote:
>I am new to JDEBug. When I step through my code I notice local
>variables appearing in the local variable buffer as follows:
>
>[+]-- java.lang.String args[]
>
>When I click on [+] shouldn't I see an expansion of args[]?
I'm guessing (since you don't bother to give any context) that this is the
args argument to your main method and that its value is nil. Thus, there is
nothing to expand. At least that is how it works on my system. I suppose I
should update the debugger to handle this case in a more informative way.
- Paul