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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-03-22 02:24:52 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2017-03-22 03:46:50 +0300
commit79498a9eb81b1efee6f917e6cd03a811da4ae9cc (patch)
tree943b26b76ab34123c6241807ef2fd959fff0b64c
parent9e985794e82cbdc4542634d5e28a11b31e66584a (diff)
Revert "Switch coreclr corelib to use resx (#10268)"
This reverts commit 12ef04c22b07f1e4ec5a63009298e4537a2c8e1a.
-rw-r--r--src/System.Private.CoreLib/shared/System/IO/Error.cs2
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs2
-rw-r--r--src/System.Private.CoreLib/shared/System/StringSplitOptions.cs2
-rw-r--r--src/System.Private.CoreLib/shared/System/TupleExtensions.cs4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/System.Private.CoreLib/shared/System/IO/Error.cs b/src/System.Private.CoreLib/shared/System/IO/Error.cs
index 2aef89518..acf5b35cd 100644
--- a/src/System.Private.CoreLib/shared/System/IO/Error.cs
+++ b/src/System.Private.CoreLib/shared/System/IO/Error.cs
@@ -18,7 +18,7 @@ namespace System.IO
{
internal static Exception GetStreamIsClosed()
{
- return new ObjectDisposedException(null, SR.ObjectDisposed_StreamClosed);
+ return new ObjectDisposedException(null, SR.ObjectDisposed_StreamIsClosed);
}
internal static Exception GetEndOfFile()
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs
index ad923dfae..65b120e6b 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs
@@ -54,4 +54,4 @@ namespace System.Runtime.CompilerServices
/// </summary>
public IList<string> TransformNames => _transformNames;
}
-}
+} \ No newline at end of file
diff --git a/src/System.Private.CoreLib/shared/System/StringSplitOptions.cs b/src/System.Private.CoreLib/shared/System/StringSplitOptions.cs
index d7020559a..43b626a01 100644
--- a/src/System.Private.CoreLib/shared/System/StringSplitOptions.cs
+++ b/src/System.Private.CoreLib/shared/System/StringSplitOptions.cs
@@ -10,4 +10,4 @@ namespace System
None = 0,
RemoveEmptyEntries = 1
}
-}
+} \ No newline at end of file
diff --git a/src/System.Private.CoreLib/shared/System/TupleExtensions.cs b/src/System.Private.CoreLib/shared/System/TupleExtensions.cs
index 106a88a08..b63cb4121 100644
--- a/src/System.Private.CoreLib/shared/System/TupleExtensions.cs
+++ b/src/System.Private.CoreLib/shared/System/TupleExtensions.cs
@@ -1,4 +1,4 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
@@ -927,4 +927,4 @@ namespace System
private static Tuple<T1, T2, T3, T4, T5, T6, T7, TRest> CreateLongRef<T1, T2, T3, T4, T5, T6, T7, TRest>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, TRest rest) where TRest : ITuple =>
new Tuple<T1, T2, T3, T4, T5, T6, T7, TRest>(item1, item2, item3, item4, item5, item6, item7, rest);
}
-}
+} \ No newline at end of file