Skip to content

Commit 5e7ad6f

Browse files
committed
Fix fragments without empty constructor
1 parent 4c82388 commit 5e7ad6f

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

app/src/main/java/org/schabi/newpipe/fragments/detail/DescriptionFragment.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public DescriptionFragment(final StreamInfo streamInfo) {
3030
this.streamInfo = streamInfo;
3131
}
3232

33+
public DescriptionFragment() {
34+
}
35+
3336

3437
@Nullable
3538
@Override

app/src/main/java/org/schabi/newpipe/fragments/list/channel/ChannelAboutFragment.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ public class ChannelAboutFragment extends BaseDescriptionFragment {
3030
this.channelInfo = channelInfo;
3131
}
3232

33+
public ChannelAboutFragment() {
34+
}
3335

3436
@Override
3537
protected void initViews(final View rootView, final Bundle savedInstanceState) {

0 commit comments

Comments
 (0)