Remove null checks.

This commit is contained in:
Andy John 2022-03-21 13:55:34 -07:00 committed by Behdad Esfahbod
parent ef588ea97b
commit 7d802994be
1 changed files with 0 additions and 2 deletions

View File

@ -72,8 +72,6 @@ hb_set_add_sorted_array (hb_set_t *set,
const hb_codepoint_t *sorted_codepoints,
unsigned int num_codepoints)
{
if (unlikely(!set || !sorted_codepoints || !num_codepoints)) return;
set->add_sorted_array (sorted_codepoints,
num_codepoints,
sizeof(hb_codepoint_t));