From 3c78c42ea55383dd4dc2122ddd2ae2761c498f77 Mon Sep 17 00:00:00 2001 From: Ruoqing He Date: Mon, 31 Mar 2025 00:39:04 +0800 Subject: [PATCH] runtime-rs: Remove redundant empty line While running `cargo fmt -- --check` in `src/runtime-rs` directory, it errors out and suggesting these is an redundant empty line, which prevents `make check` of `runtime-rs` component from passing. Remove redundant empty line to fix this. Signed-off-by: Ruoqing He --- src/runtime-rs/crates/runtimes/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime-rs/crates/runtimes/src/lib.rs b/src/runtime-rs/crates/runtimes/src/lib.rs index df8bf10580..9a98ed5e8c 100644 --- a/src/runtime-rs/crates/runtimes/src/lib.rs +++ b/src/runtime-rs/crates/runtimes/src/lib.rs @@ -4,7 +4,6 @@ // SPDX-License-Identifier: Apache-2.0 // - #[macro_use(lazy_static)] extern crate lazy_static;