aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ui/AbstractConnector.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/AbstractConnector.java b/client/src/com/vaadin/client/ui/AbstractConnector.java
index aac9b76d59..68f09ce471 100644
--- a/client/src/com/vaadin/client/ui/AbstractConnector.java
+++ b/client/src/com/vaadin/client/ui/AbstractConnector.java
@@ -178,7 +178,7 @@ public abstract class AbstractConnector implements ServerConnector,
* @return A proxy object which can be used to invoke the RPC method on the
* server.
*/
- public <T extends ServerRpc> T getRpcProxy(Class<T> rpcInterface) {
+ protected <T extends ServerRpc> T getRpcProxy(Class<T> rpcInterface) {
if (!rpcProxyMap.containsKey(rpcInterface)) {
rpcProxyMap.put(rpcInterface, RpcProxy.create(rpcInterface, this));
}