diff options
Diffstat (limited to 'samples/ServiceProvider/App_Code/Constants.cs')
-rw-r--r-- | samples/ServiceProvider/App_Code/Constants.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/samples/ServiceProvider/App_Code/Constants.cs b/samples/ServiceProvider/App_Code/Constants.cs index 7965dc0..8ab6729 100644 --- a/samples/ServiceProvider/App_Code/Constants.cs +++ b/samples/ServiceProvider/App_Code/Constants.cs @@ -7,8 +7,6 @@ using DotNetOAuth.Messaging; /// Service Provider definitions.
/// </summary>
public static class Constants {
- public static InMemoryTokenManager TokenManager { get; set; }
-
public static Uri WebRootUrl { get; set; }
public static ServiceProviderDescription SelfDescription {
@@ -27,6 +25,6 @@ public static class Constants { }
public static ServiceProvider CreateServiceProvider() {
- return new ServiceProvider(SelfDescription, TokenManager);
+ return new ServiceProvider(SelfDescription, Global.TokenManager);
}
}
|