Bug 1338086 - Remove useless else blocks in order to reduce complexity in memory/ r=njn

MozReview-Commit-ID: G7jBKlDHshQ

--HG--
extra : rebase_source : 4317651e0cc87b0be1230b19ceb844cfcb4842bc
This commit is contained in:
Sylvestre Ledru 2017-02-09 11:24:39 +01:00
Родитель 0b79b69876
Коммит 6fd3084f65
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -520,7 +520,8 @@ main()
if (func == Buffer("jemalloc_stats")) {
replay.jemalloc_stats(args);
continue;
} else if (func == Buffer("free")) {
}
if (func == Buffer("free")) {
replay.free(args);
continue;
}