Make ExtractorsFactory javadoc consistent

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=213248388
This commit is contained in:
aquilescanta 2018-09-17 04:09:44 -07:00 committed by Oliver Woodman
parent dc807c11a1
commit 76255dfae7

View File

@ -15,14 +15,9 @@
*/
package com.google.android.exoplayer2.extractor;
/**
* Factory for arrays of {@link Extractor}s.
*/
/** Factory for arrays of {@link Extractor} instances. */
public interface ExtractorsFactory {
/**
* Returns an array of new {@link Extractor} instances.
*/
/** Returns an array of new {@link Extractor} instances. */
Extractor[] createExtractors();
}