summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/PureAttribute.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-12-28 21:37:01 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-12-28 21:37:01 -0800
commit251fee71aff7c9bec7dde226907be0075ad6a5f6 (patch)
treedc483448162df5daaabf30fb58b71f99c8e9d479 /src/DotNetOpenAuth.Core/PureAttribute.cs
parentf44b82d128498f8e4b34026f0d72ffe39ee43575 (diff)
parent393d940b76220db38084d1c427c7bd42d36abf6f (diff)
downloadDotNetOpenAuth-251fee71aff7c9bec7dde226907be0075ad6a5f6.zip
DotNetOpenAuth-251fee71aff7c9bec7dde226907be0075ad6a5f6.tar.gz
DotNetOpenAuth-251fee71aff7c9bec7dde226907be0075ad6a5f6.tar.bz2
Target exclusively .NET Framework 4.5.
Diffstat (limited to 'src/DotNetOpenAuth.Core/PureAttribute.cs')
-rw-r--r--src/DotNetOpenAuth.Core/PureAttribute.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/DotNetOpenAuth.Core/PureAttribute.cs b/src/DotNetOpenAuth.Core/PureAttribute.cs
deleted file mode 100644
index 04f7ead..0000000
--- a/src/DotNetOpenAuth.Core/PureAttribute.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="PureAttribute.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace System.Diagnostics.Contracts {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
-#if !CLR4
- /// <summary>
- /// Designates a type or member as one that does not mutate any objects that were allocated
- /// before the invocation of the member.
- /// </summary>
- [AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
- internal sealed class PureAttribute : Attribute {
- }
-#endif
-}