]> source.dussan.org Git - vaadin-framework.git/commitdiff
Changed public method to protected (#10143) 24/224/2
authorArtur Signell <artur@vaadin.com>
Wed, 7 Nov 2012 13:01:36 +0000 (15:01 +0200)
committerVaadin Code Review <review@vaadin.com>
Wed, 7 Nov 2012 14:00:08 +0000 (14:00 +0000)
Change-Id: I3d86ecda5fb6cd57f95ce8e3aa3512994c89bf3f

client/src/com/vaadin/client/ui/AbstractConnector.java

index aac9b76d59257897e3f5fcde37340c8dd0174f0d..68f09ce4719e37aef4a2bcefa77632e799916125 100644 (file)
@@ -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));
         }