Skip to content

Commit

Permalink
fix: remove empty HandleParseResult override
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Feb 11, 2020
1 parent e61c44e commit e07893a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
7 changes: 0 additions & 7 deletions src/CommandLineUtils/CommandLineApplication{T}.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,6 @@ public Func<TModel> ModelFactory
set => _modelFactory = value ?? throw new ArgumentNullException(nameof(value));
}

/// <inheritdoc />
// TODO remove in 3.0. This doesn't do anything anymore.
protected override void HandleParseResult(ParseResult parseResult)
{
base.HandleParseResult(parseResult);
}

private protected override ConventionContext CreateConventionContext() => new ConventionContext(this, typeof(TModel));

/// <inheritdoc />
Expand Down
1 change: 0 additions & 1 deletion src/CommandLineUtils/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ McMaster.Extensions.CommandLineUtils.VersionOptionFromMemberAttribute.Template.s
McMaster.Extensions.CommandLineUtils.VersionOptionFromMemberAttribute.VersionOptionFromMemberAttribute() -> void
McMaster.Extensions.CommandLineUtils.VersionOptionFromMemberAttribute.VersionOptionFromMemberAttribute(string template) -> void
override McMaster.Extensions.CommandLineUtils.CommandLineApplication<TModel>.Dispose() -> void
override McMaster.Extensions.CommandLineUtils.CommandLineApplication<TModel>.HandleParseResult(McMaster.Extensions.CommandLineUtils.Abstractions.ParseResult parseResult) -> void
static McMaster.Extensions.CommandLineUtils.Abstractions.ValueParser.Create(System.Type targetType, System.Func<string, string, System.Globalization.CultureInfo, object> parser) -> McMaster.Extensions.CommandLineUtils.Abstractions.IValueParser
static McMaster.Extensions.CommandLineUtils.Abstractions.ValueParser.Create<T>(System.Func<string, string, System.Globalization.CultureInfo, T> parser) -> McMaster.Extensions.CommandLineUtils.Abstractions.IValueParser<T>
static McMaster.Extensions.CommandLineUtils.Abstractions.ValueParser.Create<T>(System.Func<string, System.Globalization.CultureInfo, (bool, T)> parser, System.Func<string, string, System.FormatException> errorSelector) -> McMaster.Extensions.CommandLineUtils.Abstractions.IValueParser<T>
Expand Down

0 comments on commit e07893a

Please sign in to comment.