You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2018/02/07 02:57:55 UTC

ant-ivy git commit: IVY-1575 Fix javadoc on URLHandlerDispatcher

Repository: ant-ivy
Updated Branches:
  refs/heads/master 9003b5b5a -> 82ad5b041


IVY-1575 Fix javadoc on URLHandlerDispatcher


Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/82ad5b04
Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/82ad5b04
Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/82ad5b04

Branch: refs/heads/master
Commit: 82ad5b0416b93ebd7fcc9fe6cb75417bc8540a84
Parents: 9003b5b
Author: Jaikiran Pai <ja...@apache.org>
Authored: Wed Feb 7 08:27:39 2018 +0530
Committer: Jaikiran Pai <ja...@apache.org>
Committed: Wed Feb 7 08:27:39 2018 +0530

----------------------------------------------------------------------
 src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/82ad5b04/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 47f7999..bb1d6f0 100644
--- a/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java
+++ b/src/java/org/apache/ivy/util/url/URLHandlerDispatcher.java
@@ -28,7 +28,9 @@ import java.util.HashMap;
 import java.util.Map;
 
 /**
- * This class is used to dispatch downloading requests
+ * An implementation of {@link URLHandler} which uses an underlying {@link URLHandler} per protocol
+ * and a fallback default {@link URLHandler} for dealing with downloads, uploads and
+ * general reachability checks
  */
 public class URLHandlerDispatcher implements URLHandler {
     private final Map<String, URLHandler> handlers = new HashMap<>();