Skip to content

Commit 71eb08d

Browse files
Fix NRT warning
1 parent b3ed4f8 commit 71eb08d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/profiled-aot/CommonMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static async Task<string> Invoke()
3131

3232
var type = typeof (CommonMethods);
3333
var method = type.GetMethod (nameof (FromReflection), BindingFlags.NonPublic | BindingFlags.Static);
34-
method.Invoke (null, null);
34+
method!.Invoke (null, null);
3535

3636
using var client = new HttpClient();
3737
var send = client.SendAsync (new HttpRequestMessage (HttpMethod.Get, url));

0 commit comments

Comments
 (0)