summaryrefslogtreecommitdiffstats
path: root/bcel-builder
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-26 14:59:55 +0000
committeraclement <aclement>2008-08-26 14:59:55 +0000
commitb8aaf878584d3d591a05181f3e9f5cd1bfa2970d (patch)
tree30163628f618c9c18cede416eb34d820eb5069c5 /bcel-builder
parent3263fc39a0638164c396bf2abd5a682f7d0d094b (diff)
downloadaspectj-b8aaf878584d3d591a05181f3e9f5cd1bfa2970d.tar.gz
aspectj-b8aaf878584d3d591a05181f3e9f5cd1bfa2970d.zip
remove unused
Diffstat (limited to 'bcel-builder')
-rw-r--r--bcel-builder/src/org/aspectj/apache/bcel/classfile/ConstantPool.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/bcel-builder/src/org/aspectj/apache/bcel/classfile/ConstantPool.java b/bcel-builder/src/org/aspectj/apache/bcel/classfile/ConstantPool.java
index d9e36ca18..a2e35d279 100644
--- a/bcel-builder/src/org/aspectj/apache/bcel/classfile/ConstantPool.java
+++ b/bcel-builder/src/org/aspectj/apache/bcel/classfile/ConstantPool.java
@@ -66,7 +66,6 @@ public class ConstantPool implements Node {
* @return deep copy of this constant pool
*/
public ConstantPool copy() {
- ConstantPool c = null;
Constant[] newConstants = new Constant[poolSize]; // use the correct size
for (int i=1;i<poolSize;i++) {
if (pool[i]!=null) {