Răsfoiți Sursa

* CollectionTest.cs (IEnumerable.GetEnumerator): Don't prefix with
System.Collections, since it resolves to the MonoTests namespace.

svn path=/trunk/mcs/; revision=46305

Raja R Harinath 20 ani în urmă
părinte
comite
dad7efcaa7

+ 5 - 0
mcs/class/corlib/Test/System.Collections.ObjectModel/ChangeLog

@@ -1,3 +1,8 @@
+2005-06-21  Raja R Harinath  <[email protected]>
+
+	* CollectionTest.cs (IEnumerable.GetEnumerator): Don't prefix with
+	System.Collections, since it resolves to the MonoTests namespace.
+
 2005-06-21  David Waite  <[email protected]>
 
 	* CollectionTest.cs : added

+ 1 - 1
mcs/class/corlib/Test/System.Collections.ObjectModel/CollectionTest.cs

@@ -148,7 +148,7 @@ namespace MonoTests.System.Collections.ObjectModel
 
 			#region IEnumerable Members
 
-			System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator ()
+			IEnumerator IEnumerable.GetEnumerator ()
 			{
 				throw new Exception ("The method or operation is not implemented.");
 			}