diff options
Diffstat (limited to 'samples/OAuthServiceProvider/Code/Global.cs')
-rw-r--r-- | samples/OAuthServiceProvider/Code/Global.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs index 37206ab..6f04a55 100644 --- a/samples/OAuthServiceProvider/Code/Global.cs +++ b/samples/OAuthServiceProvider/Code/Global.cs @@ -10,10 +10,6 @@ /// The web application global events and properties. /// </summary> public class Global : HttpApplication { - private readonly object syncObject = new object(); - - private volatile bool initialized; - /// <summary> /// An application memory cache of recent log messages. /// </summary> @@ -24,6 +20,10 @@ /// </summary> public static log4net.ILog Logger = log4net.LogManager.GetLogger("DotNetOpenAuth.OAuthServiceProvider"); + private readonly object syncObject = new object(); + + private volatile bool initialized; + /// <summary> /// Gets the transaction-protected database connection for the current request. /// </summary> |