Skip to content

Commit

Permalink
Rename logging patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Carnagion committed Aug 11, 2022
1 parent 10c2fe1 commit cf265df
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ namespace Godot.Modding.Patching
/// An <see cref="IPatch"/> that logs the state of any <see cref="XmlNode"/>s before and after applying a separate patch to them.
/// </summary>
[PublicAPI]
public class NodeLogPatch : IPatch
public class LogPatch : IPatch
{
/// <summary>
/// Initialises a new <see cref="NodeLogPatch"/> with the specified parameters.
/// Initialises a new <see cref="LogPatch"/> with the specified parameters.
/// </summary>
/// <param name="patch">The patch to apply before and after logging the <see cref="XmlNode"/>.</param>
public NodeLogPatch(IPatch patch)
public LogPatch(IPatch patch)
{
this.Patch = patch;
}

private NodeLogPatch()
private LogPatch()
{
}

Expand Down

0 comments on commit cf265df

Please sign in to comment.