diff --git a/src/ch/blinkenlights/android/vanilla/CoverCache.java b/src/ch/blinkenlights/android/vanilla/CoverCache.java index 4776b3a4..9defb52c 100644 --- a/src/ch/blinkenlights/android/vanilla/CoverCache.java +++ b/src/ch/blinkenlights/android/vanilla/CoverCache.java @@ -175,7 +175,7 @@ public class CoverCache { * Creates a new in-memory LRU cache * * @param context the application context - * @param int the lru cache size in bytes + * @param size the lru cache size in bytes */ public BitmapLruCache(Context context, int size) { super(size); diff --git a/src/ch/blinkenlights/android/vanilla/LazyCoverView.java b/src/ch/blinkenlights/android/vanilla/LazyCoverView.java index 5c112edd..70f6dabf 100644 --- a/src/ch/blinkenlights/android/vanilla/LazyCoverView.java +++ b/src/ch/blinkenlights/android/vanilla/LazyCoverView.java @@ -191,7 +191,7 @@ public class LazyCoverView extends ImageView * Updates the view with a cached bitmap * A fallback image will be used on cache miss * - * @param payload The cover message containing the cache key and view to use + * @param key The cover message containing the cache key and view to use */ public boolean drawFromCache(CoverCache.CoverKey key, boolean fadeIn) { boolean cacheHit = true;