evas textblock - remove redundant check

found by PVS studio
This commit is contained in:
Carsten Haitzler 2017-07-31 11:34:41 +09:00
parent 1dc443a1a6
commit 26e93caec7
1 changed files with 1 additions and 1 deletions

View File

@ -9501,7 +9501,7 @@ _evas_textblock_node_text_adjust_offsets_to_start(Efl_Canvas_Text_Data *o,
}
last_node->visible = EINA_FALSE;
if (!itr || (itr && (itr->text_node != n)))
if (!itr || (itr->text_node != n))
{
/* Remove the PS, and return since it's the end of the node */
if (_IS_PARAGRAPH_SEPARATOR(o, last_node->format))