Skip to content

Commit cae27ec

Browse files
committed
remove unnecessary private set
1 parent 9386e2d commit cae27ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CodingAlphabet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ public CodingAlphabet(int length, string alphabet)
5454
/// <summary>
5555
/// Gets the length of the alphabet.
5656
/// </summary>
57-
public int Length { get; private set; }
57+
public int Length { get; }
5858

5959
/// <summary>
6060
/// Gets the characters of the alphabet.
6161
/// </summary>
62-
public string Value { get; private set; }
62+
public string Value { get; }
6363

6464
internal ReadOnlySpan<byte> ReverseLookupTable => reverseLookupTable;
6565

0 commit comments

Comments
 (0)