Skip to content

Commit

Permalink
Object type for overwritedefaultwith (#422)
Browse files Browse the repository at this point in the history
Co-authored-by: Olivier Levitt <olivier.levitt@gmail.com>
  • Loading branch information
fcomte and olevitt committed Jun 19, 2024
1 parent 48fed70 commit 4e7aaf0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public static class XOnyxia {
boolean hidden = false;
boolean readonly = false;

String overwriteDefaultWith;
Object overwriteDefaultWith;
Object overwriteListEnumWith;

String useRegionSliderConfig;
Expand All @@ -381,11 +381,11 @@ public void setReadonly(boolean readonly) {
this.readonly = readonly;
}

public String getOverwriteDefaultWith() {
public Object getOverwriteDefaultWith() {
return overwriteDefaultWith;
}

public void setOverwriteDefaultWith(String overwriteDefaultWith) {
public void setOverwriteDefaultWith(Object overwriteDefaultWith) {
this.overwriteDefaultWith = overwriteDefaultWith;
}

Expand Down

0 comments on commit 4e7aaf0

Please sign in to comment.