]> source.dussan.org Git - vaadin-framework.git/commitdiff
Description getter should return what has been set and not convert it
authorArtur Signell <artur@vaadin.com>
Fri, 23 Mar 2012 08:28:35 +0000 (10:28 +0200)
committerArtur Signell <artur@vaadin.com>
Fri, 23 Mar 2012 09:29:48 +0000 (11:29 +0200)
src/com/vaadin/terminal/gwt/client/ComponentState.java

index 90821e8bdeadaca87acdf900cdee791c8164a768..10cd14251b65b606a99450f00d51504a04d6b8cf 100644 (file)
@@ -205,9 +205,6 @@ public class ComponentState extends SharedState {
      * @return component description (not null, can be empty string)
      */
     public String getDescription() {
-        if (description == null) {
-            return "";
-        }
         return description;
     }
 
@@ -229,7 +226,7 @@ public class ComponentState extends SharedState {
      * @return true if the component has a description
      */
     public boolean hasDescription() {
-        return !"".equals(getDescription());
+        return getDescription() != null && !"".equals(getDescription());
     }
 
     /**