schema: drop some commented out lines

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-06-02 10:14:06 +02:00
parent 3facb7b455
commit d68a755536

View File

@ -401,7 +401,6 @@ pub fn dump_enum_properties(schema: &Schema) -> Result<String, Error> {
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 {