From 3e83aa8b8bb61690ecf4d54a5e816c06b1c80709 Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Fri, 8 Mar 2013 16:59:04 +0200 Subject: Properly recognize class of redefined UI connector (#10867) Change-Id: I8e3afbd669123a846214c3bd65bf696aa2b5a536 --- client/src/com/vaadin/client/ApplicationConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') 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); -- cgit v1.2.3