From d83b89cfd0bba53d7b5fa9f3c9d9f348f822497f Mon Sep 17 00:00:00 2001 From: olly Date: Fri, 1 Apr 2016 06:34:29 -0700 Subject: [PATCH] Minor documentation tweak. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=118774671 --- .../android/exoplayer/upstream/DefaultDataSource.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/library/src/main/java/com/google/android/exoplayer/upstream/DefaultDataSource.java b/library/src/main/java/com/google/android/exoplayer/upstream/DefaultDataSource.java index 1508f0ed76..2753c993e7 100644 --- a/library/src/main/java/com/google/android/exoplayer/upstream/DefaultDataSource.java +++ b/library/src/main/java/com/google/android/exoplayer/upstream/DefaultDataSource.java @@ -65,12 +65,13 @@ public final class DefaultDataSource implements DataSource { } /** - * Constructs a new instance, using a provided {@link DataSource} for fetching remote data. + * Constructs a new instance that delegates to a provided {@link DataSource} for URI schemes other + * than file, asset and content. * * @param context A context. * @param listener An optional {@link TransferListener}. - * @param defaultDataSource A {@link DataSource} to use for all URIs other than file, asset and - * content URIs. This {@link DataSource} should normally handle at least http(s) URIs. + * @param defaultDataSource A {@link DataSource} to use for URI schemes other than file, asset and + * content. This {@link DataSource} should normally support at least http(s). */ public DefaultDataSource(Context context, TransferListener listener, DataSource defaultDataSource) {