Skip to content

Commit

Permalink
Fix: Avoid Cannot construct instance of (no Creators, like default co…
Browse files Browse the repository at this point in the history
…nstructor, exist) on CustomProperties
  • Loading branch information
kristinaBc3 committed Jan 29, 2024
1 parent 42a7676 commit 6c46d35
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public class CustomProperty {
private String value;
private boolean onlyAdmin;

public CustomProperty() {}

public CustomProperty(String key, String value, boolean onlyAdmin) {
this.key = key;
this.value = value;
Expand Down

0 comments on commit 6c46d35

Please sign in to comment.