Skip to content

Commit

Permalink
Merge pull request jMonkeyEngine#593 from TheLivan/master
Browse files Browse the repository at this point in the history
Fix incorrect assignment
  • Loading branch information
neph1 authored Apr 18, 2024
2 parents 7979eb5 + 3d4a166 commit 0a8180e
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 0a8180e

Please sign in to comment.