diff options
Diffstat (limited to 'libjava/gnu/classpath/jdwp/VMFrame.java')
| -rw-r--r-- | libjava/gnu/classpath/jdwp/VMFrame.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gnu/classpath/jdwp/VMFrame.java b/libjava/gnu/classpath/jdwp/VMFrame.java index 840ca09e884..cd213025a72 100644 --- a/libjava/gnu/classpath/jdwp/VMFrame.java +++ b/libjava/gnu/classpath/jdwp/VMFrame.java @@ -76,14 +76,14 @@ public class VMFrame * * @param slot the slot containing the variable */ - public Object getValue(int slot) { return null; } + public native Object getValue(int slot); /** * Assigns the given variable to the given value. * @param slot The slot which contains the variable * @param value The value to assign the variable to */ - public void setValue(int slot, Object value) { } + public native void setValue(int slot, Object value); /** * Get the object which is represented by 'this' in the context of the frame, |

