diff options
author | David Christiansen <coding@davedoes.net> | 2012-03-16 10:33:38 +0000 |
---|---|---|
committer | David Christiansen <coding@davedoes.net> | 2012-03-16 10:33:38 +0000 |
commit | 32834c15862a447b7d362a2904f241d842660a2c (patch) | |
tree | 867a7995c20635445d299d1db4dd468026fc0e97 /src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs | |
parent | 2df3e36b4bfe3f01e17dceebab0a7951db21ecc7 (diff) | |
download | DotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.zip DotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.tar.gz DotNetOpenAuth.Samples-32834c15862a447b7d362a2904f241d842660a2c.tar.bz2 |
Added reference to fixed DotNetOpenAuth.OpenIdOAuth package.
Diffstat (limited to 'src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs')
-rw-r--r-- | src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs b/src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs index 9662cb2..0dad973 100644 --- a/src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs +++ b/src/DotNetOpenAuth.ApplicationBlock/InMemoryClientAuthorizationTracker.cs @@ -15,7 +15,6 @@ namespace DotNetOpenAuth.ApplicationBlock { using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OAuth2; -#if SAMPLESONLY internal class InMemoryClientAuthorizationTracker : IClientAuthorizationTracker { private readonly Dictionary<int, IAuthorizationState> savedStates = new Dictionary<int, IAuthorizationState>(); private int stateCounter; @@ -47,5 +46,4 @@ namespace DotNetOpenAuth.ApplicationBlock { return this.savedStates[counter] = new AuthorizationState(scope); } } -#endif } |