From ed8db972f6442239bf406e15dea2dcd62a15691d Mon Sep 17 00:00:00 2001 From: Tom Kirby-Green Date: Fri, 24 Sep 2021 12:41:37 +0100 Subject: [PATCH] 'DeltaApplicationResult' rename private field --- IO.Ably.DeltaCodec/DeltaApplicationResult.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/IO.Ably.DeltaCodec/DeltaApplicationResult.cs b/IO.Ably.DeltaCodec/DeltaApplicationResult.cs index a50e83e..befebdd 100644 --- a/IO.Ably.DeltaCodec/DeltaApplicationResult.cs +++ b/IO.Ably.DeltaCodec/DeltaApplicationResult.cs @@ -7,11 +7,11 @@ namespace IO.Ably.DeltaCodec /// public class DeltaApplicationResult { - private readonly byte[] data; + private readonly byte[] _data; internal DeltaApplicationResult(byte[] data) { - this.data = data; + _data = data; } /// @@ -20,7 +20,7 @@ internal DeltaApplicationResult(byte[] data) /// byte[] representation of this delta application result public byte[] AsByteArray() { - return this.data; + return _data; } /// @@ -30,7 +30,7 @@ public byte[] AsByteArray() /// The UTF-8 string representation of this delta application result public string AsUtf8String() { - return Encoding.UTF8.GetString(this.data); + return Encoding.UTF8.GetString(_data); } } } \ No newline at end of file