Fixed two JavaDoc params references

This commit is contained in:
Xiao Bao Clark 2015-08-22 08:31:26 +10:00
parent abe07ec61d
commit c9036ce45c
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;