Skip to content

Commit a1ee835

Browse files
committed
cargo clippy fix
1 parent e45cb07 commit a1ee835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-backend-native/src/node_export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ fn debug_js_to_clrepr_to_js(mut cx: FunctionContext) -> JsResult<JsValue> {
511511
fn parse_cubestore_ws_result_message(mut cx: FunctionContext) -> JsResult<JsValue> {
512512
let msg = cx.argument::<JsBuffer>(0)?;
513513
let msg_data = msg.as_slice(&cx).to_vec();
514-
match parse_cubestore_ws_result(&*msg_data) {
514+
match parse_cubestore_ws_result(&msg_data) {
515515
Ok(result) => {
516516
let js_array = cx.execute_scoped(|mut cx| {
517517
let js_array = JsArray::new(&mut cx, result.len());

0 commit comments

Comments
 (0)