diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-26 16:25:10 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-26 16:25:10 -0800 |
commit | 4bf6dfa05ab5ba2d7ebff157dc4a1a85dae42125 (patch) | |
tree | d13e1c27bdc20077e50059646d2823ab044e4d1e /src/DotNetOpenAuth.Core/Messaging/DataBag.cs | |
parent | 8f48e3f1daedb77e451f9fe8ac497741c6bb06f9 (diff) | |
download | DotNetOpenAuth-4bf6dfa05ab5ba2d7ebff157dc4a1a85dae42125.zip DotNetOpenAuth-4bf6dfa05ab5ba2d7ebff157dc4a1a85dae42125.tar.gz DotNetOpenAuth-4bf6dfa05ab5ba2d7ebff157dc4a1a85dae42125.tar.bz2 |
Removes all traces of MS Code Contracts.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/DataBag.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/DataBag.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/DataBag.cs b/src/DotNetOpenAuth.Core/Messaging/DataBag.cs index 0800840..cdf4033 100644 --- a/src/DotNetOpenAuth.Core/Messaging/DataBag.cs +++ b/src/DotNetOpenAuth.Core/Messaging/DataBag.cs @@ -42,7 +42,7 @@ namespace DotNetOpenAuth.Messaging { /// </summary> /// <param name="version">The DataBag version.</param> protected DataBag(Version version) { - Contract.Requires(version != null); + Requires.NotNull(version, "version"); this.version = version; } |