Fix namespace for Nullable converters (#37019)
authorSteve Harter <steveharter@users.noreply.github.com>
Thu, 28 May 2020 15:12:32 +0000 (10:12 -0500)
committerGitHub <noreply@github.com>
Thu, 28 May 2020 15:12:32 +0000 (10:12 -0500)
src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Converters/Value/NullableConverter.cs
src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Converters/Value/NullableConverterFactory.cs

index 1fb68df..70e202d 100644 (file)
@@ -2,7 +2,7 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-namespace System.Text.Json.Serialization
+namespace System.Text.Json.Serialization.Converters
 {
     internal class NullableConverter<T> : JsonConverter<T?> where T : struct
     {