Skip to content

Commit f206733

Browse files
committed
move on to version 0.13.0, and made ListCollector only accept InfoItemExtracto
1 parent f787b37 commit f206733

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ allprojects {
33
sourceCompatibility = 1.7
44
targetCompatibility = 1.7
55

6-
version 'v0.12.0'
6+
version 'v0.13.0'
77

88
repositories {
99
jcenter()

extractor/src/main/java/org/schabi/newpipe/extractor/InfoItemsCollector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
2828
*/
2929

30-
public abstract class InfoItemsCollector<I extends InfoItem, E> implements Collector<I,E> {
30+
public abstract class InfoItemsCollector<I extends InfoItem, E extends InfoItemExtractor> implements Collector<I,E> {
3131

3232
private final List<I> itemList = new ArrayList<>();
3333
private final List<Throwable> errors = new ArrayList<>();

0 commit comments

Comments
 (0)