diff options
author | aclement <aclement> | 2009-12-09 18:01:31 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-12-09 18:01:31 +0000 |
commit | ca38e2297442d0de07b1b8d3845d3190b1f3be56 (patch) | |
tree | 8734961e209e7b9e2577cadf2e4e1e9ec40dd052 /bcel-builder | |
parent | a416d96a68c2ef1ad7ac4936266d549bf1e9ba40 (diff) | |
download | aspectj-ca38e2297442d0de07b1b8d3845d3190b1f3be56.tar.gz aspectj-ca38e2297442d0de07b1b8d3845d3190b1f3be56.zip |
unnecessary code
Diffstat (limited to 'bcel-builder')
-rw-r--r-- | bcel-builder/src/org/aspectj/apache/bcel/classfile/Attribute.java | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/Attribute.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/Attribute.java index f10150de0..bc30b719c 100644 --- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/Attribute.java +++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/Attribute.java @@ -70,7 +70,7 @@ import org.aspectj.apache.bcel.classfile.annotation.RuntimeVisParamAnnos; * <em>Exceptiontable</em>, <em>LineNumberTable</em>, <em>LocalVariableTable</em>, <em>InnerClasses</em> and <em>Synthetic</em> * attributes are supported. The <em>Unknown</em> attribute stands for non-standard-attributes. * - * @version $Id: Attribute.java,v 1.8 2009/11/13 17:40:59 aclement Exp $ + * @version $Id: Attribute.java,v 1.9 2009/12/09 18:01:31 aclement Exp $ * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A> * @see ConstantValue * @see SourceFile @@ -182,30 +182,6 @@ public abstract class Attribute implements Cloneable, Node, Serializable { return cpool; } - // /** - // * Use copy() if you want to have a deep copy(), ie. with all references copied correctly. - // * - // * @return shallow copy of this attribute - // */ - // @Override - // public Object clone() { - // Object o = null; - // - // try { - // o = super.clone(); - // } catch (CloneNotSupportedException e) { - // e.printStackTrace(); // Never occurs - // } - // - // return o; - // } - - // - // /** - // * @return deep copy of this attribute - // */ - // public abstract Attribute copy(ConstantPool constant_pool); - @Override public String toString() { return Constants.ATTRIBUTE_NAMES[tag]; |