diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-04 13:31:31 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-04 13:31:31 +0300 |
commit | f6b3c140e77c2f27010117ab8bb3876fe492fb2f (patch) | |
tree | 5fe3ad5eb0875dbd18653a510f5c21389dcab4c2 /client | |
parent | f4d93126ca75631702a2086d770d068d8c13d547 (diff) | |
download | vaadin-framework-f6b3c140e77c2f27010117ab8bb3876fe492fb2f.tar.gz vaadin-framework-f6b3c140e77c2f27010117ab8bb3876fe492fb2f.zip |
Removed unused instance variable from button
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/button/VButton.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/client/src/com/vaadin/client/ui/button/VButton.java b/client/src/com/vaadin/client/ui/button/VButton.java index 8e611144e4..d4cd40e2e9 100644 --- a/client/src/com/vaadin/client/ui/button/VButton.java +++ b/client/src/com/vaadin/client/ui/button/VButton.java @@ -91,11 +91,6 @@ public class VButton extends FocusWidget implements ClickHandler { private HandlerRegistration focusHandlerRegistration; private HandlerRegistration blurHandlerRegistration; - /** - * If caption should be rendered in HTML - */ - protected boolean htmlCaption = false; - public VButton() { super(DOM.createDiv()); setTabIndex(0); |