I'm committing this as a trivial fix for Byeogncheol, who has
no other commits listed.

ChangeLog:

2008-07-07  Andrew John Hughes  <[EMAIL PROTECTED]>

        * THANKYOU: Added Byeogncheol.

2008-07-07  Byeogncheol Lee  <[EMAIL PROTECTED]>

        PR classpath/36677:
        * gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java:
        (executeTopLevelThreadGroups(ByteBuffer,DataOutputStream)):
        Add missing write.

-- 
Andrew :)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8
Index: THANKYOU
===================================================================
RCS file: /sources/classpath/classpath/THANKYOU,v
retrieving revision 1.38
diff -u -u -r1.38 THANKYOU
--- THANKYOU    10 Dec 2007 22:32:23 -0000      1.38
+++ THANKYOU    7 Jul 2008 03:10:04 -0000
@@ -26,6 +26,7 @@
 Steven Hugg ([EMAIL PROTECTED])
 [EMAIL PROTECTED]
 Isaac Jones ([EMAIL PROTECTED])
+Byeogncheol Lee ([EMAIL PROTECTED])
 Oskar Liljeblad ([EMAIL PROTECTED])
 Trevor Linton ([EMAIL PROTECTED])
 Casey Marshall ([EMAIL PROTECTED])
Index: gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
===================================================================
RCS file: 
/sources/classpath/classpath/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java,v
retrieving revision 1.10
diff -u -u -r1.10 VirtualMachineCommandSet.java
--- gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java  1 Mar 2007 
02:02:36 -0000       1.10
+++ gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java  7 Jul 2008 
03:10:05 -0000
@@ -264,7 +264,7 @@
     ThreadGroup root = getRootThreadGroup(jdwpGroup);
 
     os.writeInt(1); // Just one top level group allowed?
-    idMan.getObjectId(root);
+    idMan.getObjectId(root).write(os);
   }
 
   private void executeDispose(ByteBuffer bb, DataOutputStream os)

Reply via email to