https://bz.apache.org/bugzilla/show_bug.cgi?id=69485
--- Comment #2 from [email protected] --- I have seen a similar issue, and I think maybe this recent change is the cause: https://github.com/apache/ant/commit/1c80d507f496dde98869890e671edf635bef8dec#diff-d38467a7ab8ce678b163bb8a4a3cb54d64420fc9d7efd3aa7a9d645949bea65bR835 Before the change the iteration did not include the last element in pathElements: ``` final int size = pathElements.size(); for (int fcount = 0; fcount < size - 1; fcount++) { String currentPathElement = pathElements.get(fcount); ``` while now it iterates over all elements: ``` + for (String currentPathElement : pathElements) { ``` -- You are receiving this mail because: You are the assignee for the bug.
