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:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2019-01-30 15:41:44 +0300
committerThays Grazia <thaystg@gmail.com>2019-04-18 18:01:15 +0300
commit1db45a411293d1c7ac09f7b071228fa9e8906b65 (patch)
tree70831c2754605abae6e78c3db700cadbb0dcacbd
parenta851190e05af9b6ded646c1eec65c0b5cc118910 (diff)
Fix namespace of the AmbiguousImplementationException (#22291)
Moving to the namespace that was approved in dotnet/corefx#34124. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs b/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
index a9d0eeb63..4358c65a8 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
@@ -2,10 +2,10 @@
// 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.Runtime;
using System.Globalization;
+using System.Runtime.Serialization;
-namespace System.Runtime.Serialization
+namespace System.Runtime
{
[Serializable]
public sealed class AmbiguousImplementationException : Exception