aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-03-06 20:09:06 +0200
committerVaadin Code Review <review@vaadin.com>2014-03-11 19:47:43 +0000
commitc4c17a18dcb013588518c1542fd8d3966b08cd40 (patch)
tree6ccafe06ec8d0bb9000f7a708e376592b6ef7091 /shared
parent729b79a737fd2b3ed1c49ec66b3c823393bab017 (diff)
downloadvaadin-framework-c4c17a18dcb013588518c1542fd8d3966b08cd40.tar.gz
vaadin-framework-c4c17a18dcb013588518c1542fd8d3966b08cd40.zip
Do not ever set title to null (#13430)
* If title is null, leave it as-is (assume somebody else is setting it) * If title is non-null, set it as before Change-Id: I72699efa089df64b58448ceef59ba31995f330bf
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/PageState.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/PageState.java b/shared/src/com/vaadin/shared/ui/ui/PageState.java
index ded73d16d5..4d2768787f 100644
--- a/shared/src/com/vaadin/shared/ui/ui/PageState.java
+++ b/shared/src/com/vaadin/shared/ui/ui/PageState.java
@@ -32,7 +32,7 @@ public class PageState implements Serializable {
public boolean hasResizeListeners = false;
/**
- * Non-null if the title is set.
+ * Non-null if the title is set. Null means Vaadin does not touch the title.
*/
public String title = null;
} \ No newline at end of file