]> source.dussan.org Git - vaadin-framework.git/commitdiff
removed obsolete field "width" from VNativeButton. (#12825)
authorFabian Lange <lange.fabian@gmail.com>
Tue, 22 Oct 2013 22:06:24 +0000 (00:06 +0200)
committerFabian Lange <lange.fabian@gmail.com>
Wed, 23 Oct 2013 07:38:13 +0000 (09:38 +0200)
The field width of VNativeButton was written when setWidth() was invoked,
but it was never read anywhere. Removing it saves cpu time and memory.
This field was not marked as internal and it was protected, if anybody needs
it, they can easily add it to their classes.

Change-Id: I9f2bb9b5426b25ba36b3414cc70d2298e515ac23

client/src/com/vaadin/client/ui/VNativeButton.java

index 67fa6f2ee306e4cc5076c6ae383933b5b8028242..d38e4c33747091cd9e54e21d29f60b70cd15f49f 100644 (file)
@@ -33,8 +33,6 @@ public class VNativeButton extends Button implements ClickHandler {
 
     public static final String CLASSNAME = "v-nativebutton";
 
-    protected String width = null;
-
     /** For internal use only. May be removed or replaced in the future. */
     public String paintableId;
 
@@ -123,12 +121,6 @@ public class VNativeButton extends Button implements ClickHandler {
         }
     }
 
-    @Override
-    public void setWidth(String width) {
-        this.width = width;
-        super.setWidth(width);
-    }
-
     /*
      * (non-Javadoc)
      *