From fd73145b9df6ee0a613234b07e5095dc241c372b Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 9 Jan 2017 18:32:56 -0800 Subject: [PATCH] Remove some debugging printlns --- src/otf/cmap.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/otf/cmap.rs b/src/otf/cmap.rs index 9a5c8d15..ed926bd9 100644 --- a/src/otf/cmap.rs +++ b/src/otf/cmap.rs @@ -70,7 +70,6 @@ impl<'a> CmapTable<'a> { // Check the mapping table format. let format = try!(cmap_reader.read_u16::().map_err(drop)); if format != FORMAT_SEGMENT_MAPPING_TO_DELTA_VALUES { - println!("bad format, {:?}", format); return Err(()) } @@ -186,7 +185,6 @@ impl<'a> CmapTable<'a> { // Otherwise, look up the glyphs individually. for code_offset in start_code_offset..(end_code_offset + 1) { - println!("individual lookup"); let mut glyph_id = glyph_ids; try!(glyph_id.jump((id_range_offset as usize + code_offset as usize) * 2)); let mut glyph_id = try!(glyph_id.read_u16::().map_err(drop));