From 6e67b1c9b1354a565afe55a52ddb99bffdd99b0d Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Wed, 1 Jul 2015 14:38:29 -0700 Subject: [PATCH] Delete dead file --- .../INonceCache.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/Microsoft.AspNet.Authentication.OpenIdConnect/INonceCache.cs diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/INonceCache.cs b/src/Microsoft.AspNet.Authentication.OpenIdConnect/INonceCache.cs deleted file mode 100644 index 8dc39aa9d8..0000000000 --- a/src/Microsoft.AspNet.Authentication.OpenIdConnect/INonceCache.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.AspNet.Authentication.OpenIdConnect -{ - public interface INonceCache - { - bool TryAddNonce(string nonce); - - bool TryRemoveNonce(string nonce); - } -}