diff options
author | Keith Seitz <keiths@redhat.com> | 2006-02-16 22:06:48 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2006-02-16 22:06:48 +0000 |
commit | ffc5fc13f8b87ad8afe75ef8c3d03a1e715b8cac (patch) | |
tree | 0d62d519d2fd30c4522d7925f67da13a837a874a /gnu/classpath/jdwp/id/ObjectId.java | |
parent | d5407817fd6747a8f1f9bf4195060ca5be4e5365 (diff) | |
download | classpath-ffc5fc13f8b87ad8afe75ef8c3d03a1e715b8cac.tar.gz |
* gnu/classpath/jdwp/id/JdwpId.java (size): Make static. Return
default size of eight bytes.
* gnu/classpath/jdwp/id/ObjectId.java (size): Remove.
* gnu/classpath/jdwp/id/ReferenceTypeId.java (size): Remove.
* gnu/classpath/jdwp/processor/VirtualMachineCommandSet.java
(executeIDsizes): Use new static methods.
* vm/reference/gnu/classpath/jdwp/VMFrame.java (size): New static
method.
Diffstat (limited to 'gnu/classpath/jdwp/id/ObjectId.java')
-rw-r--r-- | gnu/classpath/jdwp/id/ObjectId.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/classpath/jdwp/id/ObjectId.java b/gnu/classpath/jdwp/id/ObjectId.java index 3e2abd4f6..a4a37fd13 100644 --- a/gnu/classpath/jdwp/id/ObjectId.java +++ b/gnu/classpath/jdwp/id/ObjectId.java @@ -1,5 +1,5 @@ /* ObjectId.java -- object IDs - Copyright (C) 2005 Free Software Foundation + Copyright (C) 2005, 2006 Free Software Foundation This file is part of GNU Classpath. @@ -83,14 +83,6 @@ public class ObjectId } /** - * Returns the size of this id type - */ - public int size () - { - return 8; - } - - /** * Returns the object referred to by this ID * * @returns the object |