Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/aws-cur-anonymize/Cli/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

public class RunCommand : AsyncCommand<RunSettings>
{
public override async Task<int> ExecuteAsync(CommandContext context, RunSettings settings, CancellationToken cancellationToken)
protected override async Task<int> ExecuteAsync(CommandContext context, RunSettings settings, CancellationToken cancellationToken)

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Build and Test on macos-latest

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Build and Test on macos-latest

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Build and Test on ubuntu-latest

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Build and Test on ubuntu-latest

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Code Coverage

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'

Check failure on line 35 in src/aws-cur-anonymize/Cli/Commands.cs

View workflow job for this annotation

GitHub Actions / Code Coverage

'RunCommand.ExecuteAsync(CommandContext, RunSettings, CancellationToken)': cannot change access modifiers when overriding 'public' inherited member 'AsyncCommand<RunSettings>.ExecuteAsync(CommandContext, RunSettings, CancellationToken)'
{
// Show banner
ShowBanner();
Expand Down
Loading