Skip to content

Commit

Permalink
Remove async void
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingosse committed Feb 6, 2024
1 parent 18fbf08 commit 4256e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracer/src/Datadog.Trace/Debugger/Symbols/SymbolsUploader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ private void UnRegisterToAssemblyLoadEvent()
AppDomain.CurrentDomain.AssemblyLoad -= CurrentDomain_AssemblyLoad;
}

private async void CurrentDomain_AssemblyLoad(object? sender, AssemblyLoadEventArgs args)
private void CurrentDomain_AssemblyLoad(object? sender, AssemblyLoadEventArgs args)
{
await ProcessItemAsync(args.LoadedAssembly).ConfigureAwait(false);
_ = ProcessItemAsync(args.LoadedAssembly);
}

private async Task ProcessItemAsync(Assembly assembly)
Expand Down

0 comments on commit 4256e95

Please sign in to comment.