diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-07 15:01:36 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-07 14:00:08 +0000 |
commit | fc3c0219224ff944441ccf4a4cc2dd30e783fc4e (patch) | |
tree | 31e337f2f0aaee2762dd9149ee2063f4538bcd77 /client | |
parent | a7624344b46509afdcdf2424c3dbade627c03c64 (diff) | |
download | vaadin-framework-fc3c0219224ff944441ccf4a4cc2dd30e783fc4e.tar.gz vaadin-framework-fc3c0219224ff944441ccf4a4cc2dd30e783fc4e.zip |
Changed public method to protected (#10143)
Change-Id: I3d86ecda5fb6cd57f95ce8e3aa3512994c89bf3f
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/AbstractConnector.java | 2 |
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)); } |