Fixed an issue with AndroidNativeImageLoader which was opening stream twice. (#1338)

This commit is contained in:
Ali-RS 2020-04-08 13:14:04 +04:30 committed by Stephen Gold
parent 969e2808e4
commit 0bdb0159be

View File

@ -30,7 +30,7 @@ public class AndroidNativeImageLoader implements AssetLoader {
InputStream in = null; InputStream in = null;
try { try {
in = info.openStream(); in = info.openStream();
return load(info.openStream(), flip, tmpArray); return load(in, flip, tmpArray);
} finally { } finally {
if (in != null){ if (in != null){
in.close(); in.close();