diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-03-28 10:47:28 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-03-28 10:47:28 +0200 |
commit | 85e8d141d31e0dbe7e96920b923e9bade36214d3 (patch) | |
tree | 04e7396a8c1c8a48db2cccdf26717b5e2a5e6c09 /client | |
parent | 67a9154c015f92b95ddd223ddd5b81b647609cc4 (diff) | |
download | vaadin-framework-85e8d141d31e0dbe7e96920b923e9bade36214d3.tar.gz vaadin-framework-85e8d141d31e0dbe7e96920b923e9bade36214d3.zip |
Remove notice about using generics from error message (#12873)
Change-Id: Id2f56090533fdce756051b32547b3dcaa4f94f93
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/AbstractComponentConnector.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index 5933441e0a..f6c26cda05 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -91,9 +91,8 @@ public abstract class AbstractComponentConnector extends AbstractConnector "Default implementation of createWidget() does not work for " + Util.getSimpleName(this) + ". This might be caused by explicitely using " - + "super.createWidget(), using a widget type with " - + "generics or some unspecified problem with the " - + "widgetset compilation.", e); + + "super.createWidget() or some unspecified " + + "problem with the widgetset compilation.", e); } } |