am 8232105e: Properly deprecate HttpRequestHandlerRegistry#matchUriRequestPattern.
Merge commit '8232105ef86740b2fddce9e9477aa16a450ee8a8' into gingerbread-plus-aosp
* commit '8232105ef86740b2fddce9e9477aa16a450ee8a8':
Properly deprecate HttpRequestHandlerRegistry#matchUriRequestPattern.
diff --git a/src/org/apache/http/protocol/HttpRequestHandlerRegistry.java b/src/org/apache/http/protocol/HttpRequestHandlerRegistry.java
index 668d748..79701e3 100644
--- a/src/org/apache/http/protocol/HttpRequestHandlerRegistry.java
+++ b/src/org/apache/http/protocol/HttpRequestHandlerRegistry.java
@@ -73,8 +73,9 @@
}
/**
- * @deprecated
+ * @deprecated use {@link UriPatternMatcher} directly
*/
+ @Deprecated
protected boolean matchUriRequestPattern(final String pattern, final String requestUri) {
return matcher.matchUriRequestPattern(pattern, requestUri);
}