Browse Source

fix spelling error in var name

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@947340 13f79535-47bb-0310-9956-ffa450edef68
master
Jacobus Martinus Kruithof 15 years ago
parent
commit
c78b5d0baa
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/util/ResourceUtils.java

+ 2
- 2
src/main/org/apache/tools/ant/util/ResourceUtils.java View File

@@ -528,9 +528,9 @@ public class ResourceUtils {
long position = 0;
long count = srcChannel.size();
while (position < count) {
long chunck = Math.min(MAX_IO_CHUNCK_SIZE, count - position);
long chunk = Math.min(MAX_IO_CHUNCK_SIZE, count - position);
position +=
srcChannel.transferTo(position, chunck,
srcChannel.transferTo(position, chunk,
destChannel);
}
} finally {


Loading…
Cancel
Save