diff options
author | aclement <aclement> | 2008-08-26 15:00:49 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-26 15:00:49 +0000 |
commit | 8d85e808ac4ed874eb37a5d9f92ca427d6a8fbd0 (patch) | |
tree | e29c5fdc81227ce3a2f86b8cc0ba7916d2a3654c /bcel-builder | |
parent | b4246548cf7c9e1d67230aa8193af0d0d18039bf (diff) | |
download | aspectj-8d85e808ac4ed874eb37a5d9f92ca427d6a8fbd0.tar.gz aspectj-8d85e808ac4ed874eb37a5d9f92ca427d6a8fbd0.zip |
tidy
Diffstat (limited to 'bcel-builder')
-rw-r--r-- | bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariable.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariable.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariable.java index c97ec1485..8fc7a504d 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariable.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariable.java @@ -61,13 +61,12 @@ import java.io.*; * This class represents a local variable within a method. It contains its * scope, name, signature and index on the method's frame. * - * @version $Id: LocalVariable.java,v 1.3 2008/05/28 23:53:02 aclement Exp $ + * @version $Id: LocalVariable.java,v 1.4 2008/08/26 15:00:49 aclement Exp $ * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A> * @see LocalVariableTable */ -public final class LocalVariable - implements Constants, Cloneable, Node, Serializable -{ +public final class LocalVariable implements Constants, Cloneable, Node { + private int start_pc; // Range in which the variable is valid private int length; private int name_index; // Index in constant pool of variable name |