Skip to content

Commit e24f73e

Browse files
authored
Fix build warnings in MonoProxy (#18573)
1 parent 9bdf208 commit e24f73e

File tree

1 file changed

+2
-2
lines changed
  • src/Components/Blazor/Server/src/MonoDebugProxy/ws-proxy

1 file changed

+2
-2
lines changed

src/Components/Blazor/Server/src/MonoDebugProxy/ws-proxy/MonoProxy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ async Task GetDetails(int msg_id, int object_id, CancellationToken token, string
461461
{
462462
result = var_list
463463
});
464-
} catch (Exception e) {
464+
} catch (Exception) {
465465
Debug ($"failed to parse {res.Value}");
466466
}
467467
SendResponse(msg_id, Result.Ok(o), token);
@@ -534,7 +534,7 @@ async Task GetScopeProperties (int msg_id, int scope_id, CancellationToken token
534534
});
535535
SendResponse (msg_id, Result.Ok (o), token);
536536
}
537-
catch (Exception exc) {
537+
catch (Exception) {
538538
SendResponse (msg_id, res, token);
539539
}
540540
}

0 commit comments

Comments
 (0)