Repository: ant-ivy Updated Branches: refs/heads/master 1a283ab1b -> f0e8d41fc
IVY-735 Fix accidental recursion calls Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/f0e8d41f Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/f0e8d41f Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/f0e8d41f Branch: refs/heads/master Commit: f0e8d41fc8cc746ba9b66b72646db6bd8b25c6fc Parents: 1a283ab Author: Jaikiran Pai <[email protected]> Authored: Fri Jul 28 08:39:36 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Fri Jul 28 08:39:36 2017 +0530 ---------------------------------------------------------------------- src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/f0e8d41f/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java b/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java index 354d46e..47f7999 100644 --- a/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java +++ b/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java @@ -110,7 +110,7 @@ public class URLHandlerDispatcher implements URLHandler { @Override public void download(final URL src, final File dest, final CopyProgressListener l) throws IOException { - this.download(src, dest, l); + this.download(src, dest, l, null); } @Override @@ -120,7 +120,7 @@ public class URLHandlerDispatcher implements URLHandler { @Override public void upload(final File src, final URL dest, final CopyProgressListener l) throws IOException { - this.upload(src, dest, l); + this.upload(src, dest, l, null); } @Override
