Fix javadoc in CacheKeyFactory.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=199110920
This commit is contained in:
falhassen 2018-06-04 04:06:16 -07:00 committed by Oliver Woodman
parent 007d3c61bd
commit 8e4e5fe0cc

View file

@ -15,16 +15,15 @@
*/
package com.google.android.exoplayer2.upstream.cache;
import android.net.Uri;
import com.google.android.exoplayer2.upstream.DataSpec;
/** Factory for custom cache keys. */
/** Factory for cache keys. */
public interface CacheKeyFactory {
/**
* Returns a custom cache key for the given {@link Uri}.
* Returns a cache key for the given {@link DataSpec}.
*
* @param dataSpec The upstream source from which data will be read and cached.
* @param dataSpec The data being cached.
*/
String buildCacheKey(DataSpec dataSpec);
}