Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Maurer <benm@mono-cvs.ximian.com>2005-06-14 23:21:45 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2005-06-14 23:21:45 +0400
commit47876a3539325bb019a1af93c10a8a6ef80f1b27 (patch)
tree820048cf9ad2578a728e3fce5cb72991fe635075 /mcs/class/Mono.Directory.LDAP
parent2e21ca06c92617611e3768e95c122b096f508419 (diff)
more copy and paste reuse going away
svn path=/trunk/mcs/; revision=45988
Diffstat (limited to 'mcs/class/Mono.Directory.LDAP')
-rw-r--r--mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.dll.sources2
-rw-r--r--mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs58
2 files changed, 1 insertions, 59 deletions
diff --git a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.dll.sources b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.dll.sources
index 0fd53c9a236..2ed12366e33 100644
--- a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.dll.sources
+++ b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP.dll.sources
@@ -1,3 +1,3 @@
Mono.Directory.LDAP/LDAP.cs
Mono.Directory.LDAP/LDAPMessage.cs
-Mono.Directory.LDAP/TODOAttribute.cs
+../../build/common/MonoTODOAttribute.cs
diff --git a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs
deleted file mode 100644
index 3b160c86ea8..00000000000
--- a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-//
-// TODOAttribute.cs
-//
-// Author:
-// Ravi Pratap (ravi@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-namespace System {
-
- /// <summary>
- /// The TODO attribute is used to flag all incomplete bits in our class libraries
- /// </summary>
- ///
- /// <remarks>
- /// Use this to decorate any element which you think is not complete
- /// </remarks>
- [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- internal class MonoTODOAttribute : Attribute {
-
- private string comment;
-
- public MonoTODOAttribute ()
- {}
-
- public MonoTODOAttribute (string comment)
- {
- this.comment = comment;
- }
-
- public string Comment
- {
- get { return comment; }
- }
- }
-}