aboutsummaryrefslogtreecommitdiffstats
path: root/client-compiler
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-09-10 23:20:36 +0300
committerVaadin Code Review <review@vaadin.com>2016-09-12 08:46:55 +0000
commit712f8ad610ad3854d6a5f52f3c5e7725ebee1785 (patch)
treed22a521055f7c5953176db5a801aaa10b1ed8c75 /client-compiler
parent2ff1f3e726a7c8d11f26acbc47f67756d9f6add2 (diff)
downloadvaadin-framework-712f8ad610ad3854d6a5f52f3c5e7725ebee1785.tar.gz
vaadin-framework-712f8ad610ad3854d6a5f52f3c5e7725ebee1785.zip
Use fully qualified name for bundles
Fixes problem with two LAZY connectors not being able to have the same simple class name. Change-Id: I97970979884c99162d52718449dc18f10e955e32
Diffstat (limited to 'client-compiler')
-rw-r--r--client-compiler/src/main/java/com/vaadin/server/widgetsetutils/ConnectorBundleLoaderFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/client-compiler/src/main/java/com/vaadin/server/widgetsetutils/ConnectorBundleLoaderFactory.java b/client-compiler/src/main/java/com/vaadin/server/widgetsetutils/ConnectorBundleLoaderFactory.java
index 7e8da70ac8..87fcaef72d 100644
--- a/client-compiler/src/main/java/com/vaadin/server/widgetsetutils/ConnectorBundleLoaderFactory.java
+++ b/client-compiler/src/main/java/com/vaadin/server/widgetsetutils/ConnectorBundleLoaderFactory.java
@@ -1141,8 +1141,8 @@ public class ConnectorBundleLoaderFactory extends Generator {
Collection<JClassType> lazy = connectorsByLoadStyle.get(LoadStyle.LAZY);
for (JClassType type : lazy) {
- ConnectorBundle bundle = new ConnectorBundle(type.getName(),
- eagerBundle);
+ ConnectorBundle bundle = new ConnectorBundle(
+ type.getQualifiedSourceName(), eagerBundle);
TreeLogger subLogger = logger.branch(Type.TRACE,
"Populating " + type.getName() + " bundle");
bundle.processType(subLogger, type);