From 952d0ce2f109cd7db247f5a73037e7268adbb359 Mon Sep 17 00:00:00 2001 From: "Brian J. Burg" Date: Mon, 15 Oct 2012 17:27:54 -0700 Subject: [PATCH] Remove spurious debug statement --- src/servo/text/shaper.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/servo/text/shaper.rs b/src/servo/text/shaper.rs index 089c465c87d..dcb192bff47 100644 --- a/src/servo/text/shaper.rs +++ b/src/servo/text/shaper.rs @@ -154,7 +154,6 @@ extern fn glyph_h_advance_func(_font: *hb_font_t, _user_data: *c_void) -> hb_position_t unsafe { let font: *Font = font_data as *Font; assert font.is_not_null(); - debug!("font_data = %?", font_data); let advance = (*font).glyph_h_advance(glyph as GlyphIndex); float_to_fixed_hb(advance)