Skip to content

Commit 0a8180e

Browse files
authored
Merge pull request #593 from TheLivan/master
Fix incorrect assignment
2 parents 7979eb5 + 3d4a166 commit 0a8180e

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

+1-1
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)