From: Artur Signell Date: Tue, 22 Dec 2009 08:22:28 +0000 (+0000) Subject: Fix for #3832 - Include widget class in missing widget warning message X-Git-Tag: 6.7.0.beta1~2084^2~31 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=946b62e3349889fc1ee603be2dee9f7170053a8e;p=vaadin-framework.git Fix for #3832 - Include widget class in missing widget warning message svn changeset:10506/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java b/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java index 2727da3ecc..54dc7153dc 100644 --- a/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java +++ b/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java @@ -120,14 +120,10 @@ public class WidgetMapGenerator extends Generator { if (typeOracle.findType(annotation.value().getName()) == null) { // GWT widget not inherited - logger - .log( - Type.WARN, - "Widget implementation for " - + class1.getName() - + " not available for GWT compiler (but mapped " - + "for component found in classpath). If this is not " - + "intentional, check your gwt module definition file."); + logger.log(Type.WARN, "Widget class " + + annotation.value().getName() + + " was not found. The component " + class1.getName() + + " will not be included in the widgetset."); iterator.remove(); }