Fix build warnings in MonoProxy (#18573)

This commit is contained in:
Pranav K 2020-01-24 16:04:11 -08:00 committed by GitHub
parent 9bdf208631
commit e24f73e14b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -461,7 +461,7 @@ namespace WsProxy {
{ {
result = var_list result = var_list
}); });
} catch (Exception e) { } catch (Exception) {
Debug ($"failed to parse {res.Value}"); Debug ($"failed to parse {res.Value}");
} }
SendResponse(msg_id, Result.Ok(o), token); SendResponse(msg_id, Result.Ok(o), token);
@ -534,7 +534,7 @@ namespace WsProxy {
}); });
SendResponse (msg_id, Result.Ok (o), token); SendResponse (msg_id, Result.Ok (o), token);
} }
catch (Exception exc) { catch (Exception) {
SendResponse (msg_id, res, token); SendResponse (msg_id, res, token);
} }
} }