Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
rearrange
  • Loading branch information
nietras committed Aug 18, 2023
commit 03f7d49bb765c5bfb77716f535ea51a5a1779790
4 changes: 2 additions & 2 deletions src/BenchmarkDotNet/Loggers/TextLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ public class TextLogger : ILogger, IDisposable

public TextLogger(TextWriter writer) => this.writer = writer;

public void Dispose() => writer.Dispose();

public virtual string Id => nameof(TextLogger);
public int Priority => 0;

Expand All @@ -21,5 +19,7 @@ public class TextLogger : ILogger, IDisposable
public void WriteLine(LogKind logKind, string text) => writer.WriteLine(text);

public void Flush() => writer.Flush();

public void Dispose() => writer.Dispose();
}
}