Skip to content

Commit fdda0d6

Browse files
committed
Remove CommandLineApplication.Syntax instead of obsoleting it. It was never really used anyways.
1 parent 91fc29a commit fdda0d6

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/CommandLineUtils/CommandLineApplication.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace McMaster.Extensions.CommandLineUtils
1414
{
1515
/// <summary>
16-
/// Describes a set of command line arguments, options, and execution behavior.
16+
/// Describes a set of command line arguments, options, and execution behavior.
1717
/// <see cref="CommandLineApplication"/> can be nested to support subcommands.
1818
/// </summary>
1919
public class CommandLineApplication
@@ -47,12 +47,6 @@ public CommandLineApplication(bool throwOnUnexpectedArg = true)
4747
/// </summary>
4848
public string FullName { get; set; }
4949

50-
/// <summary>
51-
/// This API is obsolete and does nothing. The recommended replacement is <see cref="ExtendedHelpText"/>.
52-
/// </summary>
53-
[Obsolete("This API is obsolete and does nothing. The recommended replacement is ExtendedHelpText")]
54-
public string Syntax { get; set; }
55-
5650
/// <summary>
5751
/// A description of the command.
5852
/// </summary>
@@ -667,7 +661,7 @@ public void ShowVersion()
667661
}
668662

669663
/// <summary>
670-
/// Gets <see cref="FullName"/> and <see cref="ShortVersionGetter"/>.
664+
/// Gets <see cref="FullName"/> and <see cref="ShortVersionGetter"/>.
671665
/// </summary>
672666
/// <returns></returns>
673667
public string GetFullNameAndVersion()

0 commit comments

Comments
 (0)