2007-05-17 Kyle Galloway <kgallowa@redhat.com>
* classpath/gnu/classpath/jdwp/processor/ReferenceTypeCommandSet.java (executeMethods): Remove cast to ClassReferenceTypeId. * classpath/lib/gnu/classpath/jdwp/processor/ ReferenceTypeCommandSet.class: Rebuilt. From-SVN: r124809
This commit is contained in:
parent
769b6cc605
commit
e462253851
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-05-17 Kyle Galloway <kgallowa@redhat.com>
|
||||
|
||||
* classpath/gnu/classpath/jdwp/processor/ReferenceTypeCommandSet.java
|
||||
(executeMethods): Remove cast to ClassReferenceTypeId.
|
||||
* classpath/lib/gnu/classpath/jdwp/processor/
|
||||
ReferenceTypeCommandSet.class: Rebuilt.
|
||||
|
||||
2007-05-17 Kyle Galloway <kgallowa@redhat.com>
|
||||
|
||||
* gnu/classpath/jdwp/natVMMethod.cc (getModifiers): Check for native
|
||||
|
|
|
@ -183,8 +183,7 @@ public class ReferenceTypeCommandSet
|
|||
private void executeMethods(ByteBuffer bb, DataOutputStream os)
|
||||
throws JdwpException, IOException
|
||||
{
|
||||
ClassReferenceTypeId refId
|
||||
= (ClassReferenceTypeId) idMan.readReferenceTypeId(bb);
|
||||
ReferenceTypeId refId = idMan.readReferenceTypeId(bb);
|
||||
Class clazz = refId.getType();
|
||||
|
||||
VMMethod[] methods = VMVirtualMachine.getAllClassMethods(clazz);
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue