Skip to content

Commit

Permalink
fix incorrect assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLivan committed Apr 9, 2024
1 parent 7979eb5 commit 3d4a166
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public SelectionPropertyEditor(String[] tags, String value) {

public void setValue(Object value) {
if (value instanceof String) {
value = (String) value;
this.value = (String) value;
}
}

Expand Down

0 comments on commit 3d4a166

Please sign in to comment.