Skip to content

Commit e546bc2

Browse files
committed
remove pointless printlns
1 parent 14023a0 commit e546bc2

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

capnpc/src/codegen.rs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1891,19 +1891,7 @@ fn generate_node(gen: &GeneratorContext,
18911891
output.push(formatted_text);
18921892
}
18931893

1894-
node::Annotation( annotation_reader ) => {
1895-
println!(" annotation node:");
1896-
if annotation_reader.get_targets_file() {
1897-
println!(" targets file");
1898-
}
1899-
if annotation_reader.get_targets_const() {
1900-
println!(" targets const");
1901-
}
1902-
// ...
1903-
if annotation_reader.get_targets_annotation() {
1904-
println!(" targets annotation");
1905-
}
1906-
}
1894+
node::Annotation( _annotation_reader ) => (),
19071895
}
19081896

19091897
Ok(Branch(output))

0 commit comments

Comments
 (0)