Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed May 28, 2024
1 parent 619942b commit 922aac0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Sentry.Profiling/SampleProfilerSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal class SampleProfilerSession : IDisposable
private readonly TraceLogEventSource _eventSource;
private readonly MutableTraceEventStackSource _stackSource;
private readonly SampleProfilerTraceEventParser _sampleEventParser;
private readonly SymbolReader _symboReader;
private readonly SymbolReader _symbolReader;
private readonly ActivityComputer _activityComputer;
// private readonly StartStopActivityComputer _startStopActivityComputer;
private readonly IDiagnosticLogger? _logger;
Expand All @@ -30,8 +30,8 @@ private SampleProfilerSession(SentryStopwatch stopwatch, EventPipeSession sessio
_logger = logger;
_eventSource = eventSource;
_sampleEventParser = new SampleProfilerTraceEventParser(_eventSource);
_symboReader = new SymbolReader(TextWriter.Null);
_activityComputer = new ActivityComputer(eventSource, _symboReader);
_symbolReader = new SymbolReader(TextWriter.Null);
_activityComputer = new ActivityComputer(eventSource, _symbolReader);
// _startStopActivityComputer = new StartStopActivityComputer(eventSource, _activityComputer);
_stopwatch = stopwatch;
_stackSource = new MutableTraceEventStackSource(eventSource.TraceLog)
Expand Down Expand Up @@ -141,7 +141,7 @@ public void Stop()
_stopped = true;
_session.Stop();
_session.Dispose();
_symboReader.Dispose();
_symbolReader.Dispose();
_eventSource.Dispose();
}
catch (Exception ex)
Expand Down

0 comments on commit 922aac0

Please sign in to comment.