aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java15
1 files changed, 1 insertions, 14 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java b/jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java
index 7318b1b38ae..98b0ef870e1 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java
@@ -22,19 +22,6 @@ public class BindingMatch<T> {
*
* @param match The match information for this instance.
* @param target The target of this match.
- * @throws NullPointerException If any argument is null.
- * @deprecated use BindingMatch(UriPattern.Match match, T target, UriPattern matched)
- */
- @Deprecated
- public BindingMatch(UriPattern.Match match, T target) {
- this(match, target, null);
- }
-
- /**
- * <p>Constructs a new instance of this class.</p>
- *
- * @param match The match information for this instance.
- * @param target The target of this match.
* @param matched The matched URI pattern
* @throws NullPointerException If any argument is null.
*/
@@ -62,7 +49,7 @@ public class BindingMatch<T> {
* empty string. This method never returns null.</p>
*
* @param idx The index of the group to return.
- * @return The (possibly empty) substring captured by the group during matching, never <tt>null</tt>.
+ * @return The (possibly empty) substring captured by the group during matching, never <code>null</code>.
* @throws IndexOutOfBoundsException If there is no group in the match with the given index.
*/
public String group(int idx) {