Finish moving files to shared partition
authorJan Kotas <jkotas@microsoft.com>
Sat, 9 Sep 2017 16:06:21 +0000 (09:06 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sat, 9 Sep 2017 23:41:56 +0000 (16:41 -0700)
src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs
src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs

index 8e5de70..75e88ec 100644 (file)
@@ -2,13 +2,8 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-// 
-
-using System;
-using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
-using System.Runtime;
 
 namespace System.Collections.ObjectModel
 {
@@ -243,7 +238,7 @@ namespace System.Collections.ObjectModel
             {
                 //
                 // Catch the obvious case assignment will fail.
-                // We can found all possible problems by doing the check though.
+                // We can't find all possible problems by doing the check though.
                 // For example, if the element type of the Array is derived from T,
                 // we can't figure out if we can successfully copy the element beforehand.
                 //
index 03c7d45..f1d2a09 100644 (file)
@@ -2,13 +2,8 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-// 
-
-using System;
-using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
-using System.Runtime;
 
 namespace System.Collections.ObjectModel
 {
@@ -175,7 +170,7 @@ namespace System.Collections.ObjectModel
             {
                 //
                 // Catch the obvious case assignment will fail.
-                // We can found all possible problems by doing the check though.
+                // We can't find all possible problems by doing the check though.
                 // For example, if the element type of the Array is derived from T,
                 // we can't figure out if we can successfully copy the element beforehand.
                 //