Browse Source

Reverting setting the wrapper proxy to null as the unit tests failed.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275841 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 21 years ago
parent
commit
336e5b4ed9
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/main/org/apache/tools/ant/UnknownElement.java

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

@@ -309,7 +309,11 @@ public class UnknownElement extends Task {
// the task will not be reused ( a new init() will be called )
// Let GC do its job
realThing = null;
getWrapper().setProxy(null);
// FIXME: the following should be done as well, but is
// commented out for the moment as the unit tests fail
// if it is done
//getWrapper().setProxy(null);
}

/**


Loading…
Cancel
Save