From 8aff805bc6c3d6beb4e3fdc55a3352f7ae325aea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Strehovsk=C3=BD?= Date: Wed, 30 Jan 2019 13:41:44 +0100 Subject: [PATCH] Fix namespace of the AmbiguousImplementationException (dotnet/coreclr#22291) Moving to the namespace that was approved in dotnet/corefxdotnet/coreclr#34124. Commit migrated from https://github.com/dotnet/coreclr/commit/81e12aaff1d8671f1e7709afa3183458eaa79673 --- .../src/System/Runtime/AmbiguousImplementationException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/AmbiguousImplementationException.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/AmbiguousImplementationException.cs index a9d0eeb..4358c65 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Runtime/AmbiguousImplementationException.cs +++ b/src/libraries/System.Private.CoreLib/src/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 -- 2.7.4