We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
end: OctetStringRef
1 parent 82bdc41 commit 82ada13Copy full SHA for 82ada13
der/src/writer/clarify.rs
@@ -299,9 +299,11 @@ impl Clarifier {
299
}
300
301
302
- let type_name = strip_transparent_types(type_name);
303
- self.write_clarify_indent();
304
- self.write_clarify_type_str("end", type_name.as_ref());
+ if self.print_types {
+ let type_name = strip_transparent_types(type_name);
+ self.write_clarify_indent();
305
+ self.write_clarify_type_str("end", type_name.as_ref());
306
+ }
307
308
309
/// for better tag-length pretty-printing inline
0 commit comments