This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [cp-patches] [RFA/JDWP] Signature.java
- From: Tom Tromey <tromey at redhat dot com>
- To: Aaron Luchko <aluchko at redhat dot com>
- Cc: GCJ Patches <java-patches at gcc dot gnu dot org>, classpath patches <classpath-patches at gnu dot org>
- Date: 29 Jun 2005 14:03:53 -0600
- Subject: Re: [cp-patches] [RFA/JDWP] Signature.java
- References: <1120068770.31740.41.camel@tomaluk.toronto.redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Aaron" == Aaron Luchko <aluchko@redhat.com> writes:
Aaron> This class adds support for reading and writing the string type in the
Aaron> JDWP spec http://java.sun.com/j2se/1.5.0/docs/guide/jpda/jdwp-spec.html
Looks good, please check it in.
Aaron> + os.writeInt(strBytes.length);
Sad, since DataOutputStream already has a way to do this if the length
is a 'short'.
Tom