Skip to content
Prev Previous commit
Next Next commit
Updated coding style changes
  • Loading branch information
dramos020 committed Sep 2, 2022
commit c97259d9caa4656dde7c115c55091f3075e5aacb
4 changes: 1 addition & 3 deletions src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public ObservedTagSet(string tags)
private const int CounterValueLength= 20;

private int _maxNameLength = 60; // Allow room for 60 character counter names by default.

private int _statusRow; // Row # of where we print the status of dotnet-counters
private int _topRow;
private bool _paused = false;
Expand All @@ -74,7 +73,6 @@ public ObservedTagSet(string tags)
private int _consoleHeight = -1;
private int _consoleWidth = -1;


public ConsoleWriter(bool useAnsi)
{
this._useAnsi = useAnsi;
Expand Down Expand Up @@ -190,7 +188,7 @@ public void ToggleStatus(bool pauseCmdSet)
public void CounterPayloadReceived(CounterPayload payload, bool pauseCmdSet)
{
lock (_lock)
{
{
if (!_initialized)
{
_initialized = true;
Expand Down