Skip to content

Commit

Permalink
#1231 - Use public constructors for License/Changelog dialog fragment…
Browse files Browse the repository at this point in the history
…s so that they can be recreated on configuration change
  • Loading branch information
jsoberg committed Nov 29, 2023
1 parent 60e9355 commit 4522024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.beemdevelopment.aegis.R;

public class ChangelogDialog extends SimpleWebViewDialog {
private ChangelogDialog() {
public ChangelogDialog() {
super(R.string.changelog);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.beemdevelopment.aegis.R;

public class LicenseDialog extends SimpleWebViewDialog {
private LicenseDialog() {
public LicenseDialog() {
super(R.string.license);
}

Expand Down

0 comments on commit 4522024

Please sign in to comment.