summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-09-20 14:34:05 +0200
committergjoranv <gv@oath.com>2019-01-21 15:09:22 +0100
commitb940326231702e8a07dc7e2d3fb5da440bf171cf (patch)
tree216e03232c9fd0e4e7209e4f4ae647862d831e04 /jdisc_core
parent124cc055a816358de4716c7ec35c1dbcc8bbe81a (diff)
Remove deprecated and unused BindingMatch ctor.
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/application/BindingMatch.java13
1 files changed, 0 insertions, 13 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..9f347706dd8 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.
*/