From 2f1b7fe0db0b484ac4247e7c9e7daaee75d0d1d8 Mon Sep 17 00:00:00 2001 From: Eric Fleming Date: Fri, 20 Sep 2019 20:39:12 -0400 Subject: [PATCH] Removing unused interface Fixes: https://github.com/dotnet-architecture/eShopOnWeb/issues/304 --- src/ApplicationCore/Interfaces/IIdentityParser.cs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 src/ApplicationCore/Interfaces/IIdentityParser.cs diff --git a/src/ApplicationCore/Interfaces/IIdentityParser.cs b/src/ApplicationCore/Interfaces/IIdentityParser.cs deleted file mode 100644 index edc79b0..0000000 --- a/src/ApplicationCore/Interfaces/IIdentityParser.cs +++ /dev/null @@ -1,9 +0,0 @@ -using System.Security.Principal; - -namespace Microsoft.eShopWeb.ApplicationCore.Interfaces -{ - public interface IIdentityParser - { - T Parse(IPrincipal principal); - } -}