Skip to content

Commit

Permalink
Merge pull request #425 from VirtualTim/patch-1
Browse files Browse the repository at this point in the history
Make Setting constructor protected, so it's possible to extend this class
  • Loading branch information
dlemmermann committed Jul 22, 2022
2 parents fe008c1 + b97f729 commit e5d5d5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class Setting<E extends Element, P extends Property> {
private final StringProperty breadcrumb = new SimpleStringProperty("");
private String key = "";

private Setting(String description, E element, P value) {
protected Setting(String description, E element, P value) {
this.description = description;
this.element = element;
this.value = value;
Expand Down

0 comments on commit e5d5d5c

Please sign in to comment.