Bug 1242421 - remove useless null check. r=roc@ocallahan.org

This commit is contained in:
Bogdan Postelnicu 2016-01-25 14:00:29 +02:00
parent 11df5f817c
commit 4ec928230b

View File

@ -1321,7 +1321,7 @@ DrawTargetCairo::FillGlyphs(ScaledFont *aFont,
cairo_show_glyphs(mContext, &glyphs[0], aBuffer.mNumGlyphs);
if (mContext && cairo_surface_status(cairo_get_group_target(mContext))) {
if (cairo_surface_status(cairo_get_group_target(mContext))) {
gfxDebug() << "Ending FillGlyphs with a bad surface " << cairo_surface_status(cairo_get_group_target(mContext));
}
}