File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/System.Windows.Forms/src/misc Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
5
- #nullable disable
6
-
7
5
namespace System . Resources
8
6
{
9
7
/// <summary>
@@ -16,9 +14,9 @@ internal static class MultitargetUtil
16
14
/// This method gets assembly info for the corresponding type. If the delegate
17
15
/// is provided it is used to get this information.
18
16
/// </summary>
19
- public static string GetAssemblyQualifiedName ( Type type , Func < Type , string > typeNameConverter )
17
+ public static string ? GetAssemblyQualifiedName ( Type ? type , Func < Type , string > ? typeNameConverter )
20
18
{
21
- string assemblyQualifiedName = null ;
19
+ string ? assemblyQualifiedName = null ;
22
20
23
21
if ( type != null )
24
22
{
You can’t perform that action at this time.
0 commit comments