summaryrefslogtreecommitdiffstats
path: root/src/com/android/photos
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/photos')
-rw-r--r--src/com/android/photos/data/GalleryBitmapPool.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/com/android/photos/data/GalleryBitmapPool.java b/src/com/android/photos/data/GalleryBitmapPool.java
index cddc160fd..4c3279f73 100644
--- a/src/com/android/photos/data/GalleryBitmapPool.java
+++ b/src/com/android/photos/data/GalleryBitmapPool.java
@@ -46,11 +46,9 @@ public class GalleryBitmapPool {
mCapacityBytes = capacityBytes;
}
- private static GalleryBitmapPool sInstance;
+ private static GalleryBitmapPool sInstance = new GalleryBitmapPool(CAPACITY_BYTES);
+
public static GalleryBitmapPool getInstance() {
- if (sInstance == null) {
- sInstance = new GalleryBitmapPool(CAPACITY_BYTES);
- }
return sInstance;
}