Remove unnecessary "internal" from JsonConverterFactory ctor (dotnet/corefx#39504)
authorStephen Toub <stoub@microsoft.com>
Tue, 16 Jul 2019 00:14:02 +0000 (20:14 -0400)
committerGitHub <noreply@github.com>
Tue, 16 Jul 2019 00:14:02 +0000 (20:14 -0400)
commitb2ae1c1a85f3df9dcca2b18398483a6bb0f22fdc
tree2a7fe4f3ccbd9aef4c71348cc2b8f527b3ffe651
parent7fe6d63d3e55c48a650e2878f33b9fb3ab295d0f
Remove unnecessary "internal" from JsonConverterFactory ctor (dotnet/corefx#39504)

The ctor is already `protected`, so it can already be accessed by any derived type.  The only benefit adding `internal` would provide is so that it could be called directly by something else in the assembly, but the type is `abstract`, so that doesn't make sense for a ctor.

Commit migrated from https://github.com/dotnet/corefx/commit/902294e7933e84601aa4543fc3afe0dcf85c2d99
src/libraries/System.Text.Json/ref/System.Text.Json.cs
src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonConverterFactory.cs