avoid warning about unused vars

This commit is contained in:
Dietmar Maurer 2018-11-01 14:19:02 +01:00
parent f1c0021436
commit 1ac3e212c2
1 changed files with 5 additions and 5 deletions

View File

@ -83,13 +83,13 @@ fn test_api_handler(param: Value) -> Result<Value, Error> {
//if let Some(force) = param.force { //if let Some(force) = param.force {
//} //}
let force = param["force"].as_bool() let _force = param["force"].as_bool()
.ok_or_else(|| format_err!("meine fehlermeldung"))?; .ok_or_else(|| format_err!("meine fehlermeldung"))?;
if let Some(force) = param["force"].as_bool() { if let Some(_force) = param["force"].as_bool() {
} }
let tmp: Myparam = serde_json::from_value(param)?; let _tmp: Myparam = serde_json::from_value(param)?;
Ok(json!(null)) Ok(json!(null))
@ -176,7 +176,7 @@ fn handle_request(req: Request<Body>) -> Response<Body> {
&Method::DELETE => info.delete, &Method::DELETE => info.delete,
_ => None, _ => None,
}; };
let api_method = match api_method_opt { let _api_method = match api_method_opt {
Some(m) => m, Some(m) => m,
_ => http_error!(NOT_FOUND, format!("No such method '{} {}'\n", method, path)), _ => http_error!(NOT_FOUND, format!("No such method '{} {}'\n", method, path)),
}; };
@ -184,7 +184,7 @@ fn handle_request(req: Request<Body>) -> Response<Body> {
// handle auth // handle auth
// extract param // extract param
let param = match query { let _param = match query {
Some(data) => parse_query(data), Some(data) => parse_query(data),
None => json!({}), None => json!({}),
}; };