Skip to content

Commit ab1bfa7

Browse files
authored
Remove unused variable (#47931)
1 parent 1b78513 commit ab1bfa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/dotnet-user-jwts/src/Commands/ListCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private static int Execute(IReporter reporter, string projectPath, bool showToke
5252

5353
private static void PrintJwtsJson(IReporter reporter, JwtStore jwtStore)
5454
{
55-
if (jwtStore.Jwts is { Count: > 0 } jwts)
55+
if (jwtStore.Jwts is { Count: > 0 })
5656
{
5757
reporter.Output(JsonSerializer.Serialize(jwts, new JsonSerializerOptions { WriteIndented = true }));
5858
}

0 commit comments

Comments
 (0)