summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-07-07 03:11:43 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-07-07 03:11:43 +0000
commit112b91abbfe3459c2286610f6f7fd28f7bdac930 (patch)
tree0692e14df1255a98206b047768f7c5be7a31f07c /gnu
parent784d9f65c1eef6836887ed03817f4d64e029785f (diff)
downloadclasspath-112b91abbfe3459c2286610f6f7fd28f7bdac930.tar.gz
PRclasspath/36677: Add missing write
2008-07-07 Andrew John Hughes <gnu_andrew@member.fsf.org> * THANKYOU: Added Byeogncheol. 2008-07-07 Byeogncheol Lee <lineonking@gmail.com> PR classpath/36677: * gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java: (executeTopLevelThreadGroups(ByteBuffer,DataOutputStream)): Add missing write.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java b/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
index e2703908b..b6e0cfeb8 100644
--- a/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
+++ b/gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
@@ -264,7 +264,7 @@ public class VirtualMachineCommandSet
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)