Skip to content

Commit a7b1c6a

Browse files
committed
fix (core): 修复未使用属性导致编译失败
1 parent 2a16a68 commit a7b1c6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src-tauri/src/execution.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ pub async fn execute_code(
130130
{
131131
Ok(child) => child,
132132
Err(e) => {
133-
let execution_time = start_time.elapsed().as_millis();
134-
let timestamp = SystemTime::now()
133+
let _execution_time = start_time.elapsed().as_millis();
134+
let _timestamp = SystemTime::now()
135135
.duration_since(UNIX_EPOCH)
136136
.unwrap()
137137
.as_secs();

0 commit comments

Comments
 (0)