Fix namespace of the AmbiguousImplementationException (dotnet/coreclr#22291)
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>
Wed, 30 Jan 2019 12:41:44 +0000 (13:41 +0100)
committerStephen Toub <stoub@microsoft.com>
Wed, 30 Jan 2019 12:41:44 +0000 (07:41 -0500)
Moving to the namespace that was approved in dotnet/corefxdotnet/coreclr#34124.

Commit migrated from https://github.com/dotnet/coreclr/commit/81e12aaff1d8671f1e7709afa3183458eaa79673

src/libraries/System.Private.CoreLib/src/System/Runtime/AmbiguousImplementationException.cs

index a9d0eeb..4358c65 100644 (file)
@@ -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