Skip to content

Commit a0b2a29

Browse files
committedMar 7, 2025
Test code cleanup. Killed many warnings.
1 parent a7cc9f2 commit a0b2a29

File tree

73 files changed

+2650
-2801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2650
-2801
lines changed
 

‎Terminal.Gui/ConsoleDrivers/AnsiEscapeSequence.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class AnsiEscapeSequence
3333
/// to the oldest outstanding request.
3434
/// </para>
3535
/// </summary>
36-
public required string Terminator { get; init; }
36+
public required string? Terminator { get; init; }
3737

3838

3939

‎Terminal.Gui/ConsoleDrivers/AnsiEscapeSequenceRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class AnsiEscapeSequenceRequest : AnsiEscapeSequence
1212
/// Invoked when the console responds with an ANSI response code that matches the
1313
/// <see cref="AnsiEscapeSequence.Terminator"/>
1414
/// </summary>
15-
public required Action<string> ResponseReceived { get; init; }
15+
public required Action<string?> ResponseReceived { get; init; }
1616

1717
/// <summary>
1818
/// Invoked if the console fails to responds to the ANSI response code

0 commit comments

Comments
 (0)