aboutsummaryrefslogtreecommitdiffstats
path: root/src/proguard/optimize/info/VariableUsageMarker.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/optimize/info/VariableUsageMarker.java')
-rw-r--r--src/proguard/optimize/info/VariableUsageMarker.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/proguard/optimize/info/VariableUsageMarker.java b/src/proguard/optimize/info/VariableUsageMarker.java
index a1c6a9a..660c4ba 100644
--- a/src/proguard/optimize/info/VariableUsageMarker.java
+++ b/src/proguard/optimize/info/VariableUsageMarker.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
@@ -27,8 +27,6 @@ import proguard.classfile.instruction.*;
import proguard.classfile.instruction.visitor.InstructionVisitor;
import proguard.classfile.util.SimplifiedVisitor;
-import java.util.Arrays;
-
/**
* This AttributeVisitor marks the local variables that are used in the code
* attributes that it visits.
@@ -64,13 +62,14 @@ implements AttributeVisitor,
// Try to reuse the previous array.
if (variableUsed.length < maxLocals)
{
- // Create a new array.
variableUsed = new boolean[maxLocals];
}
else
{
- // Reset the array.
- Arrays.fill(variableUsed, 0, maxLocals, false);
+ for (int index = 0; index < maxLocals; index++)
+ {
+ variableUsed[index] = false;
+ }
}
codeAttribute.instructionsAccept(clazz, method, this);