]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for #3832 - Include widget class in missing widget warning message
authorArtur Signell <artur.signell@itmill.com>
Tue, 22 Dec 2009 08:22:28 +0000 (08:22 +0000)
committerArtur Signell <artur.signell@itmill.com>
Tue, 22 Dec 2009 08:22:28 +0000 (08:22 +0000)
svn changeset:10506/svn branch:6.2

src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java

index 2727da3ecc6210f73b3fd9b34a095db407531fef..54dc7153dccb6ac9c0445c23cb5e66a60a4834e1 100644 (file)
@@ -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();
             }