You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2017/12/05 21:05:46 UTC

httpcomponents-core git commit: Add missing Javadoc @param.

Repository: httpcomponents-core
Updated Branches:
  refs/heads/4.4.x 53d45ba16 -> fb104b2c3


Add missing Javadoc @param.

Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/fb104b2c
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/fb104b2c
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/fb104b2c

Branch: refs/heads/4.4.x
Commit: fb104b2c31ca41b086ff5bf49e5b87f4e72adb89
Parents: 53d45ba
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Dec 5 14:05:44 2017 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Dec 5 14:05:44 2017 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/http/protocol/UriPatternMatcher.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/fb104b2c/httpcore/src/main/java/org/apache/http/protocol/UriPatternMatcher.java
----------------------------------------------------------------------
diff --git a/httpcore/src/main/java/org/apache/http/protocol/UriPatternMatcher.java b/httpcore/src/main/java/org/apache/http/protocol/UriPatternMatcher.java
index 42904d2..1244953 100644
--- a/httpcore/src/main/java/org/apache/http/protocol/UriPatternMatcher.java
+++ b/httpcore/src/main/java/org/apache/http/protocol/UriPatternMatcher.java
@@ -46,7 +46,8 @@ import org.apache.http.util.Args;
  * <br>
  * This class can be used to resolve an object matching a particular request
  * URI.
- *
+ * 
+ * @param <T> The type of registered objects.
  * @since 4.0
  */
 @Contract(threading = ThreadingBehavior.SAFE)