diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-31 21:09:46 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-01 11:02:47 -0700 |
commit | d5fb1dbbc8388eac763ef85310097a618ff90437 (patch) | |
tree | 09e7ec86209b02bf2097ca0e1103f877f4530433 /src/DotNetOAuth/IProtocolMessage.cs | |
parent | 0160f8d043d6b2dbbeb344d69594d7fe02119906 (diff) | |
download | DotNetOpenAuth-d5fb1dbbc8388eac763ef85310097a618ff90437.zip DotNetOpenAuth-d5fb1dbbc8388eac763ef85310097a618ff90437.tar.gz DotNetOpenAuth-d5fb1dbbc8388eac763ef85310097a618ff90437.tar.bz2 |
Some StyleCop adjustments.
Diffstat (limited to 'src/DotNetOAuth/IProtocolMessage.cs')
-rw-r--r-- | src/DotNetOAuth/IProtocolMessage.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOAuth/IProtocolMessage.cs b/src/DotNetOAuth/IProtocolMessage.cs index fb1ef96..a1ba259 100644 --- a/src/DotNetOAuth/IProtocolMessage.cs +++ b/src/DotNetOAuth/IProtocolMessage.cs @@ -1,8 +1,8 @@ -using System;
-using System.Collections.Generic;
-using System.Text;
+namespace DotNetOAuth {
+ using System;
+ using System.Collections.Generic;
+ using System.Text;
-namespace DotNetOAuth {
/// <summary>
/// The interface that classes must implement to be serialized/deserialized
/// as OAuth messages.
|