Skip to content

Commit 39494bb

Browse files
committed
refactor: remove redundent ternary operation
This check was used for debugging purposed and will be instead replaced with a project configuration that applies pre-processors for the solution
1 parent 9dc5642 commit 39494bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tanji.CLI/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public async Task RunAsync(CancellationToken cancellationToken = default)
6565
_logger.LogInformation("Intercepting Ticket(s)...");
6666
do
6767
{
68-
string ticket = true ? "hhus.ABC.v4" : await _webInterception.InterceptTicketAsync(cancellationToken).ConfigureAwait(false);
68+
string ticket = await _webInterception.InterceptTicketAsync(cancellationToken).ConfigureAwait(false);
6969
_logger.LogInformation("Ticket Acquired: {ticket}", ticket);
7070
_webInterception.Stop();
7171

0 commit comments

Comments
 (0)