Browse Source

add a debug log statement to increase pressure on GC and hope to avoid PR 42696

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@888888 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 15 years ago
parent
commit
792092f443
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/main/org/apache/tools/ant/taskdefs/Expand.java

+ 1
- 0
src/main/org/apache/tools/ant/taskdefs/Expand.java View File

@@ -174,6 +174,7 @@ public class Expand extends Task {
empty = false;
ZipEntry ze = (ZipEntry) e.nextElement();
InputStream is = null;
log("extracting " + ze.getName(), Project.MSG_DEBUG);
try {
extractFile(fileUtils, srcF, dir,
is = zf.getInputStream(ze),


Loading…
Cancel
Save