We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3ed4f8 commit 71eb08dCopy full SHA for 71eb08d
src/profiled-aot/CommonMethods.cs
@@ -31,7 +31,7 @@ public static async Task<string> Invoke()
31
32
var type = typeof (CommonMethods);
33
var method = type.GetMethod (nameof (FromReflection), BindingFlags.NonPublic | BindingFlags.Static);
34
- method.Invoke (null, null);
+ method!.Invoke (null, null);
35
36
using var client = new HttpClient();
37
var send = client.SendAsync (new HttpRequestMessage (HttpMethod.Get, url));
0 commit comments