Skip to content

Commit

Permalink
fixed null handling in TracingBase
Browse files Browse the repository at this point in the history
  • Loading branch information
birschick-bq committed Nov 17, 2024
1 parent ee11da1 commit 6f0a759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/src/Apache.Arrow.Adbc/Tracing/TracingBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected virtual void Dispose(bool disposing)
{
if (disposing)
{
ActivitySource?.Dispose();
ActivitySource.Dispose();
}
_disposedValue = true;
}
Expand Down

0 comments on commit 6f0a759

Please sign in to comment.