diff --git a/src/Microsoft.AspNet.Routing/Template/TemplateMatcher.cs b/src/Microsoft.AspNet.Routing/Template/TemplateMatcher.cs index bfa611a2f0..cc32a00f04 100644 --- a/src/Microsoft.AspNet.Routing/Template/TemplateMatcher.cs +++ b/src/Microsoft.AspNet.Routing/Template/TemplateMatcher.cs @@ -25,11 +25,6 @@ namespace Microsoft.AspNet.Routing.Template throw new ArgumentNullException(nameof(template)); } - if (defaults == null) - { - throw new ArgumentNullException(nameof(defaults)); - } - Template = template; Defaults = defaults ?? RouteValueDictionary.Empty; }