summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-09-09 09:06:21 -0700
committerJan Kotas <jkotas@microsoft.com>2017-09-09 16:41:56 -0700
commit3580376aa1b6775bdb2f2eaab745dc50e14b089f (patch)
tree56ca0444abcc6559d4530d59e37253879d05545b /src
parentbd6f5574b05aa1c814c5dbada47a122685806dd3 (diff)
downloadcoreclr-3580376aa1b6775bdb2f2eaab745dc50e14b089f.tar.gz
coreclr-3580376aa1b6775bdb2f2eaab745dc50e14b089f.tar.bz2
coreclr-3580376aa1b6775bdb2f2eaab745dc50e14b089f.zip
Finish moving files to shared partition
Diffstat (limited to 'src')
-rw-r--r--src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs7
-rw-r--r--src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs7
2 files changed, 2 insertions, 12 deletions
diff --git a/src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs b/src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs
index 8e5de70e72..75e88eccb3 100644
--- a/src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs
+++ b/src/mscorlib/shared/System/Collections/ObjectModel/Collection.cs
@@ -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.
//
diff --git a/src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs b/src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs
index 03c7d45e16..f1d2a0969b 100644
--- a/src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs
+++ b/src/mscorlib/shared/System/Collections/ObjectModel/ReadOnlyCollection.cs
@@ -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.
//