From d68a755536cacdeb93cfb2686b785d271be35d5f Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 2 Jun 2022 10:14:06 +0200 Subject: [PATCH] schema: drop some commented out lines Signed-off-by: Wolfgang Bumiller --- proxmox-schema/src/format.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/proxmox-schema/src/format.rs b/proxmox-schema/src/format.rs index 0246b728..08012146 100644 --- a/proxmox-schema/src/format.rs +++ b/proxmox-schema/src/format.rs @@ -401,7 +401,6 @@ pub fn dump_enum_properties(schema: &Schema) -> Result { use std::fmt::Write; let _ = write!(res, ":``{}``: ", item.value); - //res.push_str(&format!(":``{}``: ", item.value)); let descr = wrap_text("", " ", item.description, 80); res.push_str(&descr); res.push('\n'); @@ -424,7 +423,6 @@ pub fn dump_api_return_schema(returns: &ReturnType, style: ParameterDisplayStyle }; let type_text = get_schema_type_text(schema, style); - //res.push_str(&format!("**{}**\n\n", type_text)); let _ = write!(res, "**{}**\n\n", type_text); match schema {