2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-30 22:05:18 +00:00

Remove throws parsing exception.

This commit is contained in:
FireMasterK
2021-09-02 16:12:37 +05:30
parent 0ba03c552c
commit a0c1dcc8d8
9 changed files with 9 additions and 9 deletions

View File

@@ -81,7 +81,7 @@ public class BandcampRadioInfoItemExtractor implements StreamInfoItemExtractor {
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -22,7 +22,7 @@ public class BandcampDiscographStreamInfoItemExtractor extends BandcampStreamInf
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -56,7 +56,7 @@ public class BandcampPlaylistStreamInfoItemExtractor extends BandcampStreamInfoI
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -28,7 +28,7 @@ public class BandcampSearchStreamInfoItemExtractor extends BandcampStreamInfoIte
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -75,7 +75,7 @@ public class MediaCCCLiveStreamKioskExtractor implements StreamInfoItemExtractor
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -70,7 +70,7 @@ public class MediaCCCRecentKioskExtractor implements StreamInfoItemExtractor {
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -48,7 +48,7 @@ public class MediaCCCStreamInfoItemExtractor implements StreamInfoItemExtractor
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -58,7 +58,7 @@ public class PeertubeStreamInfoItemExtractor implements StreamInfoItemExtractor
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}

View File

@@ -47,7 +47,7 @@ public class SoundcloudStreamInfoItemExtractor implements StreamInfoItemExtracto
@Nullable
@Override
public String getUploaderAvatarUrl() throws ParsingException {
public String getUploaderAvatarUrl() {
return null;
}