diff options
| author | Kyle Galloway <kgallowa@redhat.com> | 2007-02-22 21:22:26 +0000 |
|---|---|---|
| committer | Kyle Galloway <kgallowa@redhat.com> | 2007-02-22 21:22:26 +0000 |
| commit | 368e10f797ad2d14956509a3edce6383f49ff249 (patch) | |
| tree | 8e1c32520295dc630136bfcfbfdd4e711242bde3 /vm/reference/gnu/classpath | |
| parent | 1962dd021ff2d8d1503da267d19a6e1207d567d9 (diff) | |
| download | classpath-368e10f797ad2d14956509a3edce6383f49ff249.tar.gz | |
2007-02-22 Kyle Galloway <kgallowa@redhat.com>
* gnu/classpath/jdwp/processor/StackFrameCommandSet.java
(executeGetValues): Pass a signature byte to VMFrame.getValue.
* vm/reference/gnu/classpath/jdwp/VMFrame.java (getValue): Add
signature parameter.
Diffstat (limited to 'vm/reference/gnu/classpath')
| -rw-r--r-- | vm/reference/gnu/classpath/jdwp/VMFrame.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/reference/gnu/classpath/jdwp/VMFrame.java b/vm/reference/gnu/classpath/jdwp/VMFrame.java index a6961aed3..3b0b031c2 100644 --- a/vm/reference/gnu/classpath/jdwp/VMFrame.java +++ b/vm/reference/gnu/classpath/jdwp/VMFrame.java @@ -93,7 +93,7 @@ public class VMFrame * * @param slot the slot containing the variable */ - public native Object getValue(int slot); + public native Object getValue(int slot, byte sig); /** * Assigns the given variable to the given value. |
