summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/com/android/bitmap/UnrefedPooledCache.java1
-rw-r--r--src/com/android/bitmap/drawable/BasicBitmapDrawable.java1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/bitmap/UnrefedPooledCache.java b/src/com/android/bitmap/UnrefedPooledCache.java
index 5729ec4..7bc6d0d 100644
--- a/src/com/android/bitmap/UnrefedPooledCache.java
+++ b/src/com/android/bitmap/UnrefedPooledCache.java
@@ -110,6 +110,7 @@ public class UnrefedPooledCache<K, V extends Poolable> implements PooledCache<K,
public void offer(V value) {
Trace.beginSection("pool offer");
if (value.getRefCount() != 0 || !value.isEligibleForPooling()) {
+ Trace.endSection();
throw new IllegalArgumentException("unexpected offer of an invalid object: " + value);
}
mPool.offer(value);
diff --git a/src/com/android/bitmap/drawable/BasicBitmapDrawable.java b/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
index 42c4fbf..ffea5c8 100644
--- a/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
+++ b/src/com/android/bitmap/drawable/BasicBitmapDrawable.java
@@ -142,6 +142,7 @@ public class BasicBitmapDrawable extends Drawable implements DecodeCallback,
public void bind(RequestKey key) {
Trace.beginSection("bind");
if (mCurrKey != null && mCurrKey.equals(key)) {
+ Trace.endSection();
return;
}
setImage(key);