Просмотр исходного кода

2002-01-04 Ravi Pratap <[email protected]>

	* Correct name to MonoTODO everywhere.

svn path=/trunk/mcs/; revision=1824
Ravi Pratap M 24 лет назад
Родитель
Сommit
b669cc583d

+ 2 - 2
mcs/class/corlib/System.Collections/ArrayList.cs

@@ -287,7 +287,7 @@ namespace System.Collections {
 			System.Array.Copy (dataArray, 0, array, arrayIndex, count);
 		}
 
-		[TODO]
+		[MonoTODO]
 		public virtual void CopyTo (int index, Array array,
 					    int arrayIndex, int count) {
 			// FIXME: check count...
@@ -490,7 +490,7 @@ namespace System.Collections {
 			return outArray;
 		}
 
-		[TODO]
+		[MonoTODO]
 		public virtual void TrimToSize () {
 			// FIXME: implement this
 		}

+ 1 - 1
mcs/class/corlib/System.Collections/BitArray.cs

@@ -245,7 +245,7 @@ namespace System.Collections
       return new BitArray((Int32 [])m_array.Clone(), m_length);
     }
 
-    [TODO]	 
+    [MonoTODO]	 
     public void CopyTo(Array array, int index)
     {
       if (array == null)

+ 1 - 1
mcs/class/corlib/System.Collections/CaseInsensitiveHashCodeProvider.cs

@@ -61,7 +61,7 @@ namespace System.Collections {
 		// IHashCodeProvider
 		//
 
-		[TODO]
+		[MonoTODO]
 		public virtual int GetHashCode (object obj)
 		{
 			if (obj == null) {

+ 4 - 4
mcs/class/corlib/System.Collections/Hashtable.cs

@@ -19,7 +19,7 @@ using System.Collections;
 
 namespace System.Collections {
 
-	[TODO]
+	[MonoTODO]
 	public class Hashtable : IDictionary, ICollection, 
 	                         IEnumerable, ICloneable
 	{
@@ -392,13 +392,13 @@ namespace System.Collections {
 		}
 
 
-		[TODO]
+		[MonoTODO]
 		public virtual void GetObjectData (SerializationInfo info, StreamingContext context) {}
 
-		[TODO]
+		[MonoTODO]
 		public virtual void OnDeserialization (object sender);
 
-		[TODO]
+		[MonoTODO]
 		public override string ToString ()
 		{
 			// FIXME: What's it supposed to do?

+ 1 - 1
mcs/class/corlib/System.Collections/SortedList.cs

@@ -794,7 +794,7 @@ namespace System.Collections {
 			}
 
 
-			[TODO]
+			[MonoTODO]
 			public virtual object this [int index] {
 				get {
 					return host.GetByIndex (index);