summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2019-01-30 13:41:44 +0100
committerStephen Toub <stoub@microsoft.com>2019-01-30 07:41:44 -0500
commit81e12aaff1d8671f1e7709afa3183458eaa79673 (patch)
tree72a8cd147f3c65341b4c764e2af1a626ccb89888
parenta19ccc68afa0174a0cfbd58fa241a7f85785f567 (diff)
downloadcoreclr-81e12aaff1d8671f1e7709afa3183458eaa79673.tar.gz
coreclr-81e12aaff1d8671f1e7709afa3183458eaa79673.tar.bz2
coreclr-81e12aaff1d8671f1e7709afa3183458eaa79673.zip
Fix namespace of the AmbiguousImplementationException (#22291)
Moving to the namespace that was approved in dotnet/corefx#34124.
-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 a9d0eeb630..4358c65a8e 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