From: Artur Signell Date: Wed, 7 Nov 2012 13:01:36 +0000 (+0200) Subject: Changed public method to protected (#10143) X-Git-Tag: 7.0.0.beta9~43 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fc3c0219224ff944441ccf4a4cc2dd30e783fc4e;p=vaadin-framework.git Changed public method to protected (#10143) Change-Id: I3d86ecda5fb6cd57f95ce8e3aa3512994c89bf3f --- 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)); }