#1231 - Use public constructors for License/Changelog dialog fragments so that they can be recreated on configuration change

pull/1232/head
Joshua Soberg 1 year ago
parent 60e93559c3
commit 45220241aa
No known key found for this signature in database
GPG Key ID: 534A6728316CFD9C

@ -5,7 +5,7 @@ import android.content.Context;
import com.beemdevelopment.aegis.R;
public class ChangelogDialog extends SimpleWebViewDialog {
private ChangelogDialog() {
public ChangelogDialog() {
super(R.string.changelog);
}

@ -5,7 +5,7 @@ import android.content.Context;
import com.beemdevelopment.aegis.R;
public class LicenseDialog extends SimpleWebViewDialog {
private LicenseDialog() {
public LicenseDialog() {
super(R.string.license);
}

Loading…
Cancel
Save