Skip to content

Commit fa05067

Browse files
committed
Remove redundant "Option" properties syntax
1 parent 85d3111 commit fa05067

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/DocoptNet/Internals/Option.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ namespace DocoptNet.Internals
88

99
sealed partial class Option : LeafPattern
1010
{
11-
public string ShortName { get; private set; }
12-
public string LongName { get; private set; }
13-
public int ArgCount { get; private set; }
11+
public string ShortName { get; }
12+
public string LongName { get; }
13+
public int ArgCount { get; }
1414

1515
public Option(string shortName = null, string longName = null, int argCount = 0, ArgValue? value = null)
1616
{

0 commit comments

Comments
 (0)