Browse Source

- fix in Control template

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8720 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 13 years ago
parent
commit
53dba259ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jme3-templates/src/com/jme3/gde/templates/files/Control.template

+ 1 - 1
jme3-templates/src/com/jme3/gde/templates/files/Control.template

@@ -51,7 +51,7 @@ public class ${name} extends AbstractControl{
         super.read(im);
         InputCapsule in = im.getCapsule(this);
         //TODO: load properties of this Control, e.g.
-        //this.value = in.readFloat(value, "name", defaultValue);
+        //this.value = in.readFloat("name", defaultValue);
     }
 
     @Override