Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Dec 18, 2024
1 parent c7c131a commit ffdd1aa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/krilla/src/object/font/cid_font.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ impl CIDFont {
// For the .notdef glyph, it's fine if no mapping exists, since it is included
// even if it was not referenced in the text.
for g in 1..self.glyph_remapper.num_gids() {
println!("{:?}", self.cmap_entries.get(&g));
match self.cmap_entries.get(&g) {
None => sc.register_validation_error(ValidationError::InvalidCodepointMapping(
self.font.clone(),
Expand Down

0 comments on commit ffdd1aa

Please sign in to comment.