]> source.dussan.org Git - vaadin-framework.git/commitdiff
Updated formatting
authorLeif Åstrand <leif@vaadin.com>
Wed, 7 Dec 2011 09:21:37 +0000 (09:21 +0000)
committerLeif Åstrand <leif@vaadin.com>
Wed, 7 Dec 2011 09:21:37 +0000 (09:21 +0000)
svn changeset:22265/svn branch:6.7

src/com/vaadin/terminal/gwt/client/ui/VTextField.java

index 41d48041fcd19b1cb7309c26b5aa0079018e4e21..55921bab447b84822ac592611ac03dd49004eb6c 100644 (file)
@@ -249,15 +249,15 @@ public class VTextField extends TextBoxBase implements Paintable, Field,
         final String text = uidl.getStringVariable("text");
 
         /*
-         * We skip the text content update if field has been repainted, but text has
-         * not been changed. Additional sanity check verifies there is no change
-         * in the que (in which case we count more on the server side value).
+         * We skip the text content update if field has been repainted, but text
+         * has not been changed. Additional sanity check verifies there is no
+         * change in the que (in which case we count more on the server side
+         * value).
          */
-        if (!(uidl.getBooleanAttribute(ATTR_NO_VALUE_CHANGE_BETWEEN_PAINTS) && valueBeforeEdit != null && text
-                .equals(valueBeforeEdit))) {
+        if (!(uidl.getBooleanAttribute(ATTR_NO_VALUE_CHANGE_BETWEEN_PAINTS)
+                && valueBeforeEdit != null && text.equals(valueBeforeEdit))) {
             updateFieldContent(text);
         }
-        
 
         if (uidl.hasAttribute("selpos")) {
             final int pos = uidl.getIntAttribute("selpos");