From 7698c950551ba2f94823f6b5555ab504f4aaaf14 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Fri, 19 Feb 2021 11:14:15 +0100 Subject: [PATCH] examples: remove debug output --- examples/mem-dump.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/mem-dump.rs b/examples/mem-dump.rs index a19eb46..a64fd81 100644 --- a/examples/mem-dump.rs +++ b/examples/mem-dump.rs @@ -49,9 +49,6 @@ fn main() { let unix_socket = matches .value_of("unix_socket") .map(|s| SocketType::UnixSocket(s.to_string())); - if unix_socket.is_none() { - println!("empty unix socket !"); - } let vsock_socket = matches.value_of("vsock_port").map(|s| { SocketType::VSock(s.parse::().expect(&*format!( "Failed to convert command line value \"{}\" to vSock port integer",