diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-09 15:34:27 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-11-09 15:34:27 +0200 |
commit | 85d3cc78842738fe229c17b96f5d5b0d0140a4f2 (patch) | |
tree | 711164b539208fe8ae7945891007eb9123ae6299 | |
parent | 0b49d400eab3ada7078b81acbad3dd1da8847dc9 (diff) | |
download | vaadin-framework-85d3cc78842738fe229c17b96f5d5b0d0140a4f2.tar.gz vaadin-framework-85d3cc78842738fe229c17b96f5d5b0d0140a4f2.zip |
Fix typo
Change-Id: I52aaaa743f831d46d304ec4424b68e9f28bfdb30
-rw-r--r-- | server/src/com/vaadin/server/AbstractClientConnector.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/server/AbstractClientConnector.java b/server/src/com/vaadin/server/AbstractClientConnector.java index 490f23e186..b7ba48d8d5 100644 --- a/server/src/com/vaadin/server/AbstractClientConnector.java +++ b/server/src/com/vaadin/server/AbstractClientConnector.java @@ -260,7 +260,7 @@ public abstract class AbstractClientConnector implements ClientConnector, Constructor<?> constructor = proxyClass .getConstructor(InvocationHandler.class); T rpcProxy = rpcInterface.cast(constructor - .newInstance(new RpcInvoicationHandler(rpcInterface))); + .newInstance(new RpcInvocationHandler(rpcInterface))); // cache the proxy rpcProxyMap.put(rpcInterface, rpcProxy); } @@ -293,12 +293,12 @@ public abstract class AbstractClientConnector implements ClientConnector, } } - private class RpcInvoicationHandler implements InvocationHandler, + private class RpcInvocationHandler implements InvocationHandler, Serializable { private String rpcInterfaceName; - public RpcInvoicationHandler(Class<?> rpcInterface) { + public RpcInvocationHandler(Class<?> rpcInterface) { rpcInterfaceName = rpcInterface.getName().replaceAll("\\$", "."); } |