Fix fragments without empty constructor

pull/9580/head
Stypox 2024-03-30 15:14:18 +01:00
rodzic 4c8238874e
commit 5e7ad6ffd1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4BDF1B40A49FDD23
2 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -30,6 +30,9 @@ public class DescriptionFragment extends BaseDescriptionFragment {
this.streamInfo = streamInfo;
}
public DescriptionFragment() {
}
@Nullable
@Override

Wyświetl plik

@ -30,6 +30,8 @@ public class ChannelAboutFragment extends BaseDescriptionFragment {
this.channelInfo = channelInfo;
}
public ChannelAboutFragment() {
}
@Override
protected void initViews(final View rootView, final Bundle savedInstanceState) {