From 89832a40331258a8e3825ff4b2bf4d56cee1970e Mon Sep 17 00:00:00 2001 From: drendog Date: Thu, 11 Dec 2025 06:45:15 +0100 Subject: [PATCH] refactor: remove useless void return --- examples/multi-surface/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/multi-surface/src/main.rs b/examples/multi-surface/src/main.rs index d41fd54..7013555 100644 --- a/examples/multi-surface/src/main.rs +++ b/examples/multi-surface/src/main.rs @@ -28,7 +28,6 @@ fn main() -> Result<()> { .select(Surface::named("TopBar")) .on_callback("workspace_clicked", |_control| { log::info!("Workspace button clicked in TopBar"); - Value::Void }); shell @@ -37,7 +36,6 @@ fn main() -> Result<()> { if let Some(Value::String(app_name)) = args.first() { log::info!("App clicked in Dock: {}", app_name.as_str()); } - Value::Void }); log::info!("Running shell with surfaces: {:?}", shell.surface_names());