From fc3c0219224ff944441ccf4a4cc2dd30e783fc4e Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Wed, 7 Nov 2012 15:01:36 +0200 Subject: [PATCH] Changed public method to protected (#10143) Change-Id: I3d86ecda5fb6cd57f95ce8e3aa3512994c89bf3f --- client/src/com/vaadin/client/ui/AbstractConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 getRpcProxy(Class rpcInterface) { + protected T getRpcProxy(Class rpcInterface) { if (!rpcProxyMap.containsKey(rpcInterface)) { rpcProxyMap.put(rpcInterface, RpcProxy.create(rpcInterface, this)); } -- 2.39.5