Skip to content

Commit

Permalink
use field keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Nov 14, 2024
1 parent c56dcf2 commit 16f567f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Argon/JsonWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,6 @@ public string Path
}
}

EscapeHandling escapeHandling;

/// <summary>
/// Gets or sets a value indicating how JSON text output should be formatted.
/// </summary>
Expand All @@ -178,10 +176,10 @@ public string Path
/// </summary>
public EscapeHandling EscapeHandling
{
get => escapeHandling;
get;
set
{
escapeHandling = value;
field = value;
OnEscapeHandlingChanged();
}
}
Expand Down

0 comments on commit 16f567f

Please sign in to comment.