Re: java.lang.Class comment bug

2001-07-26 Thread Tom Tromey
> "Brian" == Brian Jones <[EMAIL PROTECTED]> writes: >> > > According to the J2SE documentation, the name of an array class uses the >> > > name of the element type in "Java signature format". Thus, String[]'s >> > > class should be "[Ljava.lang.String;". Brian> No idea. That would be what

Re: java.lang.Class comment bug

2001-07-26 Thread Brian Jones
John Keiser <[EMAIL PROTECTED]> writes: > On 26 Jul 2001 18:00:59 -0400, Brian Jones wrote: > > Patrick Doyle <[EMAIL PROTECTED]> writes: > > > > > The comments in vm/reference/java/lang/Class.java say this: > > > > > >The name of an array class is [ ... for > > >example, Str

Re: java.lang.Class comment bug

2001-07-26 Thread Patrick Doyle
On 26 Jul 2001, John Keiser wrote: > > Patrick Doyle <[EMAIL PROTECTED]> writes: > > > > > According to the J2SE documentation, the name of an array class uses the > > > name of the element type in "Java signature format". Thus, String[]'s > > > class should be "[Ljava.lang.String;". > > Does

Re: java.lang.Class comment bug

2001-07-26 Thread John Keiser
On 26 Jul 2001 18:00:59 -0400, Brian Jones wrote: > Patrick Doyle <[EMAIL PROTECTED]> writes: > > > The comments in vm/reference/java/lang/Class.java say this: > > > >The name of an array class is [ ... for > >example, String[]'s class is [java.lang.String. > > > > According

Re: java.lang.Class comment bug

2001-07-26 Thread Brian Jones
Patrick Doyle <[EMAIL PROTECTED]> writes: > The comments in vm/reference/java/lang/Class.java say this: > >The name of an array class is [ ... for >example, String[]'s class is [java.lang.String. > > According to the J2SE documentation, the name of an array class uses the > n

java.lang.Class comment bug

2001-07-12 Thread Patrick Doyle
The comments in vm/reference/java/lang/Class.java say this: The name of an array class is [ ... for example, String[]'s class is [java.lang.String. According to the J2SE documentation, the name of an array class uses the name of the element type in "Java signature format". Thu