From cf773ff6ecbde91646042bab3c2d758a46dbbedd Mon Sep 17 00:00:00 2001 From: Xun Gong Date: Wed, 2 Jun 2021 00:15:58 -0700 Subject: [PATCH] remove print --- lib/src/widgets/text_line.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/src/widgets/text_line.dart b/lib/src/widgets/text_line.dart index 66934479..c258acc0 100644 --- a/lib/src/widgets/text_line.dart +++ b/lib/src/widgets/text_line.dart @@ -44,9 +44,6 @@ class TextLine extends StatelessWidget { if (line.hasEmbed || (childCount > 1 && line.children.first is Embed)) { - if (childCount > 1) { - print('Unexpected - TextLine Embed as 1st child but multiple children'); - } final embed = line.children.first as Embed; return EmbedProxy(embedBuilder(context, embed)); }