guac-rs: remove commented dead code

gits a SCM.
This commit is contained in:
modeco80
2024-06-19 02:34:38 -04:00
parent b342d4874f
commit ba8743f461

View File

@@ -22,7 +22,7 @@ fn guac_decode_impl<'a>(cx: &mut FunctionContext<'a>) -> JsResult<'a, JsArray> {
}
Err(e) => {
let err = cx.string(format!("Error decoding guacamole: {}", e));
let err = cx.string(format!("{}", e));
return cx.throw(err);
}
}
@@ -37,28 +37,6 @@ fn guac_encode_impl<'a>(cx: &mut FunctionContext<'a>) -> JsResult<'a, JsString>
elements.push(input);
}
// old array stuff
/*
let input = cx.argument::<JsArray>(0)?;
let raw_elements = input.to_vec(cx)?;
// bleh
let vecres: Result<Vec<_>, _> = raw_elements
.iter()
.map(|item| match item.to_string(cx) {
Ok(s) => {
return Ok(s.value(cx));
}
Err(e) => {
return Err(e);
}
})
.collect();
let vec = vecres?;
*/
Ok(cx.string(guac::encode_instruction(&elements)))
}