Skip to content

Commit 92d4a8d

Browse files
Cleanup after reviewing PR and CI
- Fixed a couple CI failures - Fixed up some whitespace
1 parent f5473a9 commit 92d4a8d

File tree

6 files changed

+170
-170
lines changed

6 files changed

+170
-170
lines changed

src/System.CommandLine.Subsystems/Subsystems/CliSubsystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected CliSubsystem(string name, SubsystemKind subsystemKind, IAnnotationProv
2929
public SubsystemKind SubsystemKind { get; }
3030

3131
private DefaultAnnotationProvider? _defaultProvider;
32-
private readonly IAnnotationProvider? _annotationProvider;
32+
private readonly IAnnotationProvider? _annotationProvider;
3333

3434
/// <summary>
3535
/// Attempt to retrieve the value for the symbol and annotation ID from the annotation provider.

src/System.CommandLine.Tests/ParserTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,12 +1256,12 @@ public void Single_option_arguments_that_match_option_aliases_are_parsed_correct
12561256
}
12571257

12581258
[Theory]
1259-
[InlineData("-x -y")] //
1260-
[InlineData("-x true -y")] //
1261-
[InlineData("-x:true -y")] //
1262-
[InlineData("-x=true -y")] //
1259+
[InlineData("-x -y")]
1260+
[InlineData("-x true -y")]
1261+
[InlineData("-x:true -y")]
1262+
[InlineData("-x=true -y")]
12631263
[InlineData("-x -y true")]
1264-
[InlineData("-x true -y true")] //
1264+
[InlineData("-x true -y true")]
12651265
[InlineData("-x:true -y:true")]
12661266
[InlineData("-x=true -y:true")]
12671267
public void Boolean_options_are_not_greedy(string commandLine)

0 commit comments

Comments
 (0)