aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2012-10-02 05:55:46 +0000
committerVaadin Code Review <review@vaadin.com>2012-10-02 05:55:46 +0000
commitf023100342b7245c97984129d1ad5a56e848f1e8 (patch)
treefaaa40019abdb144d22b1f36a54014a9cb8b1920
parent01325ee00abfe4264306a83a2e05878ce226efa6 (diff)
parent2ad19298bd12237dfaf3b2bc9ee9f7aafe737ecb (diff)
downloadvaadin-framework-f023100342b7245c97984129d1ad5a56e848f1e8.tar.gz
vaadin-framework-f023100342b7245c97984129d1ad5a56e848f1e8.zip
Merge "Unified log message with other Property implementors (#9804)"
-rw-r--r--server/src/com/vaadin/ui/Label.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/Label.java b/server/src/com/vaadin/ui/Label.java
index 9434e92186..89281e0c27 100644
--- a/server/src/com/vaadin/ui/Label.java
+++ b/server/src/com/vaadin/ui/Label.java
@@ -219,7 +219,7 @@ public class Label extends AbstractComponent implements Property<String>,
public String toString() {
logger.warning("You are using Label.toString() to get the value for a "
+ getClass().getSimpleName()
- + ". This is not recommended and will not be supported in future versions.");
+ + ". This will not be supported starting from Vaadin 7.1 (your debugger might call toString() and cause this message to appear).");
return getValue();
}