eet_dictionary: remove dead code

If index value is not -1, then eet_dictionary_string_add() returns.
Therefore, it does not need to check the index value after that.

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D7922
This commit is contained in:
Jaehyun Cho 2019-02-13 07:59:46 +00:00 committed by Cedric BAIL
parent 1cdedaa33b
commit 94be8a88d3
1 changed files with 3 additions and 11 deletions

View File

@ -130,17 +130,9 @@ eet_dictionary_string_add(Eet_Dictionary *ed,
current->str = str;
current->len = len;
if (idx == -1)
{
current->next = ed->hash[hash];
ed->hash[hash] = ed->count;
}
else
{
current->next = idx;
if (pidx != -1) ed->all[pidx].next = ed->count;
else ed->hash[hash] = ed->count;
}
current->next = ed->hash[hash];
ed->hash[hash] = ed->count;
cnt = ed->count++;
eina_rwlock_release(&ed->rwlock);
return cnt;