summaryrefslogtreecommitdiff
path: root/src/com/android/bitmap/DecodeAggregator.java
diff options
context:
space:
mode:
authorSam Blitzstein <sblitz@google.com>2013-10-16 12:12:54 -0700
committerSam Blitzstein <sblitz@google.com>2013-10-16 15:16:43 -0700
commit40662f4b39e795d9c64502b13036e7c37fa2d373 (patch)
tree9caf8aa9e550d9d03e167a6fd519bcf5b6b5a138 /src/com/android/bitmap/DecodeAggregator.java
parent93a35b93dc582e38ff8ee5979754a16b4bf4da0c (diff)
downloadbitmap-40662f4b39e795d9c64502b13036e7c37fa2d373.tar.gz
Change BitmapRequestKey to be more cleanly implementable.
Change-Id: I831586688605e6c6c2f2f7a879c6be23175f71de
Diffstat (limited to 'src/com/android/bitmap/DecodeAggregator.java')
-rw-r--r--src/com/android/bitmap/DecodeAggregator.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/com/android/bitmap/DecodeAggregator.java b/src/com/android/bitmap/DecodeAggregator.java
index ec88efc..a2e1b07 100644
--- a/src/com/android/bitmap/DecodeAggregator.java
+++ b/src/com/android/bitmap/DecodeAggregator.java
@@ -16,11 +16,9 @@
package com.android.bitmap;
-import com.android.bitmap.DecodeTask.Request;
+public class DecodeAggregator extends ContiguousFIFOAggregator<RequestKey> {
-public class DecodeAggregator extends ContiguousFIFOAggregator<Request> {
-
- public interface Callback extends ContiguousFIFOAggregator.Callback<Request> {
+ public interface Callback extends ContiguousFIFOAggregator.Callback<RequestKey> {
}
}