diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-03-08 16:59:04 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2013-03-11 12:53:31 +0200 |
commit | 3e83aa8b8bb61690ecf4d54a5e816c06b1c80709 (patch) | |
tree | 05713bcaa7db6436c1ec053cc8eca0d597c6570e /client/src | |
parent | 6c3224ea3846c00efa621abd8134438bc9790837 (diff) | |
download | vaadin-framework-3e83aa8b8bb61690ecf4d54a5e816c06b1c80709.tar.gz vaadin-framework-3e83aa8b8bb61690ecf4d54a5e816c06b1c80709.zip |
Properly recognize class of redefined UI connector (#10867)
Change-Id: I8e3afbd669123a846214c3bd65bf696aa2b5a536
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/com/vaadin/client/ApplicationConnection.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 2610530a80..62827feffb 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -1801,7 +1801,7 @@ public class ApplicationConnection { .getConnectorClassByEncodedTag(connectorType); // Connector does not exist so we must create it - if (connectorClass != UIConnector.class) { + if (connectorClass != uIConnector.getClass()) { // create, initialize and register the paintable Profiler.enter("ApplicationConnection.getConnector"); connector = getConnector(connectorId, connectorType); |