Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ System.CommandLine.Parsing
public class Parser
.ctor(System.CommandLine.CommandLineConfiguration configuration)
.ctor(System.CommandLine.Command command)
.ctor()
public System.CommandLine.CommandLineConfiguration Configuration { get; }
public System.CommandLine.ParseResult Parse(System.Collections.Generic.IReadOnlyList<System.String> arguments, System.String rawInput = null)
public static class ParseResultExtensions
Expand Down
7 changes: 0 additions & 7 deletions src/System.CommandLine/Parsing/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,6 @@ public Parser(CommandLineConfiguration configuration)
public Parser(Command command) : this(new CommandLineConfiguration(command))
{
}

/// <summary>
/// Initializes a new instance of the <see cref="Parser" /> class using the default <see cref="RootCommand" />.
/// </summary>
public Parser() : this(new RootCommand())
{
}

/// <summary>
/// Gets the configuration on which the parser's grammar and behaviors are based.
Expand Down