diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-28 21:37:01 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-28 21:37:01 -0800 |
commit | 251fee71aff7c9bec7dde226907be0075ad6a5f6 (patch) | |
tree | dc483448162df5daaabf30fb58b71f99c8e9d479 /src/DotNetOpenAuth.Core/PureAttribute.cs | |
parent | f44b82d128498f8e4b34026f0d72ffe39ee43575 (diff) | |
parent | 393d940b76220db38084d1c427c7bd42d36abf6f (diff) | |
download | DotNetOpenAuth-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.cs | 22 |
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 -} |