Remove unnecessary println

This commit is contained in:
Maik Klein 2018-07-09 09:25:37 +02:00
parent f65c62dbaa
commit a9bf74cebf

View file

@ -1140,7 +1140,6 @@ pub fn generate_constant(constant: &vkxml::Constant) -> Tokens {
pub fn write_source_code(spec: &vkxml::Registry) { pub fn write_source_code(spec: &vkxml::Registry) {
use std::fs::File; use std::fs::File;
use std::io::Write; use std::io::Write;
println!("{:#?}", spec);
let commands: HashMap<vkxml::Identifier, &vkxml::Command> = spec let commands: HashMap<vkxml::Identifier, &vkxml::Command> = spec
.elements .elements
.iter() .iter()