From 8efd12187c2682ba6d6c8fde0a14f69d55bba1a9 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Wed, 20 Apr 2016 22:38:40 -0700 Subject: [PATCH] Remove unused interface --- .../ModelBinding/ICompositeModelBinder.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ICompositeModelBinder.cs diff --git a/src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ICompositeModelBinder.cs b/src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ICompositeModelBinder.cs deleted file mode 100644 index ce6102e9bd..0000000000 --- a/src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ICompositeModelBinder.cs +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -namespace Microsoft.AspNetCore.Mvc.ModelBinding -{ - /// - /// Represents an aggregate of that delegates to one of the instances for model binding. - /// - public interface ICompositeModelBinder : IModelBinder - { - } -}