Browse Source

-tiny loop change

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@517628 13f79535-47bb-0310-9956-ffa450edef68
master
Kevin Jackson 18 years ago
parent
commit
d8fdac9edf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/ProjectHelper.java

+ 1
- 1
src/main/org/apache/tools/ant/ProjectHelper.java View File

@@ -308,7 +308,7 @@ public class ProjectHelper {
IntrospectionHelper ih =
IntrospectionHelper.getHelper(project, target.getClass());

for (int i = 0; i < attrs.getLength(); i++) {
for (int i = 0, length = attrs.getLength(); i < length; i++) {
// reflect these into the target
String value = replaceProperties(project, attrs.getValue(i),
project.getProperties());


Loading…
Cancel
Save