Bug 1356693 - Pre: use IOUtils.safeStreamClose() in IOUtils r=walkingice

MozReview-Commit-ID: 3dikakcAKqI

--HG--
extra : rebase_source : 05dd41ed123cdd9400da84fbcc03caef03624578
This commit is contained in:
Andrzej Hunt 2017-04-14 15:24:45 -07:00
Родитель 79f145e226
Коммит 5341e86001
1 изменённых файлов: 1 добавлений и 5 удалений

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

@ -90,11 +90,7 @@ public class IOUtils {
} catch (IOException e) {
Log.e(LOGTAG, "Error consuming input stream.", e);
} finally {
try {
iStream.close();
} catch (IOException e) {
Log.e(LOGTAG, "Error closing input stream.", e);
}
IOUtils.safeStreamClose(iStream);
}
return null;