]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added info that debugger might cause log messages (#9481)
authorArtur Signell <artur@vaadin.com>
Mon, 10 Sep 2012 09:00:33 +0000 (12:00 +0300)
committerArtur Signell <artur@vaadin.com>
Mon, 10 Sep 2012 09:00:52 +0000 (12:00 +0300)
server/src/com/vaadin/ui/AbstractField.java

index f673babc26920ecc387b954bf16caffc26afd4bb..13772b68b5e9f5e07d402416b5690bd3bb355cc1 100644 (file)
@@ -417,7 +417,8 @@ public abstract class AbstractField<T> extends AbstractComponent implements
     public String toString() {
         logger.warning("You are using AbstractField.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).");
         final Object value = getFieldValue();
         if (value == null) {
             return null;