Quiet down disk cache misses

This commit is contained in:
Cameron Gutman 2015-03-02 16:13:54 -05:00
parent 4affc3c4ce
commit fc8ce5e4b9

View File

@ -7,6 +7,7 @@ import com.limelight.LimeLog;
import com.limelight.utils.CacheHelper; import com.limelight.utils.CacheHelper;
import java.io.File; import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;
@ -26,6 +27,7 @@ public class DiskAssetLoader {
BitmapFactory.Options options = new BitmapFactory.Options(); BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = sampleSize; options.inSampleSize = sampleSize;
bmp = BitmapFactory.decodeStream(in, null, options); bmp = BitmapFactory.decodeStream(in, null, options);
} catch (FileNotFoundException ignored) {
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} finally { } finally {