Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
Use primary constructor (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Dec 9, 2023
1 parent a7b37dc commit 267f7a5
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 267f7a5

Please sign in to comment.