Skip to content

Commit

Permalink
Fix fragments without empty constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Stypox committed Mar 30, 2024
1 parent 4c82388 commit 5e7ad6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public DescriptionFragment(final StreamInfo streamInfo) {
this.streamInfo = streamInfo;
}

public DescriptionFragment() {
}


@Nullable
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public class ChannelAboutFragment extends BaseDescriptionFragment {
this.channelInfo = channelInfo;
}

public ChannelAboutFragment() {
}

@Override
protected void initViews(final View rootView, final Bundle savedInstanceState) {
Expand Down

0 comments on commit 5e7ad6f

Please sign in to comment.