Skip to content

Commit

Permalink
Use primary constructor (cake-contrib#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Dec 9, 2023
1 parent 796d0d9 commit 1b1df33
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/Cake.Issues.MsBuild/LogFileFormat/BinaryLogFileFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,9 @@
/// <summary>
/// MsBuild binary log file format.
/// </summary>
internal class BinaryLogFileFormat : BaseMsBuildLogFileFormat
/// <param name="log">The Cake log instance.</param>
internal class BinaryLogFileFormat(ICakeLog log) : BaseMsBuildLogFileFormat(log)
{
/// <summary>
/// Initializes a new instance of the <see cref="BinaryLogFileFormat"/> class.
/// </summary>
/// <param name="log">The Cake log instance.</param>
public BinaryLogFileFormat(ICakeLog log)
: base(log)
{
}

/// <inheritdoc/>
public override IEnumerable<IIssue> ReadIssues(
MsBuildIssuesProvider issueProvider,
Expand Down

0 comments on commit 1b1df33

Please sign in to comment.