summaryrefslogtreecommitdiff
path: root/src/proguard/classfile/editor/VariableEditor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/classfile/editor/VariableEditor.java')
-rw-r--r--src/proguard/classfile/editor/VariableEditor.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/proguard/classfile/editor/VariableEditor.java b/src/proguard/classfile/editor/VariableEditor.java
index 8c99ff8..a583b49 100644
--- a/src/proguard/classfile/editor/VariableEditor.java
+++ b/src/proguard/classfile/editor/VariableEditor.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2009 Eric Lafortune (eric@graphics.cornell.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -25,8 +25,6 @@ import proguard.classfile.attribute.*;
import proguard.classfile.attribute.visitor.AttributeVisitor;
import proguard.classfile.util.SimplifiedVisitor;
-import java.util.Arrays;
-
/**
* This AttributeVisitor accumulates specified changes to local variables, and
* then applies these accumulated changes to the code attributes that it visits.
@@ -55,13 +53,14 @@ implements AttributeVisitor
// Try to reuse the previous array.
if (deleted.length < maxLocals)
{
- // Create a new array.
deleted = new boolean[maxLocals];
}
else
{
- // Reset the array.
- Arrays.fill(deleted, 0, maxLocals, false);
+ for (int index = 0; index < maxLocals; index++)
+ {
+ deleted[index] = false;
+ }
}
modified = false;