Skip to content

Commit 3d4a166

Browse files
committed
fix incorrect assignment
1 parent 7979eb5 commit 3d4a166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jme3-assetpack-support/src/com/jme3/gde/assetpack/browser/properties/SelectionPropertyEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public SelectionPropertyEditor(String[] tags, String value) {
5757

5858
public void setValue(Object value) {
5959
if (value instanceof String) {
60-
value = (String) value;
60+
this.value = (String) value;
6161
}
6262
}
6363

0 commit comments

Comments
 (0)