Browse Source

fix incorrect assignment

Mark 1 năm trước cách đây
mục cha
commit
3d4a1669bd

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

@@ -57,7 +57,7 @@ public class SelectionPropertyEditor implements PropertyEditor {
 
     public void setValue(Object value) {
         if (value instanceof String) {
-            value = (String) value;
+            this.value = (String) value;
         }
     }