diff options
author | John Ahlroos <john@vaadin.com> | 2013-12-31 15:24:55 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-01-07 07:55:12 +0000 |
commit | e9a547ac4e153f85597e056f5c51ade60fe29c45 (patch) | |
tree | ed28654f54f8f49053f38eebaed8e7f9abc0e548 | |
parent | 65c2f2bf06986d397169e58f819ba1592fa52bb7 (diff) | |
download | vaadin-framework-e9a547ac4e153f85597e056f5c51ade60fe29c45.tar.gz vaadin-framework-e9a547ac4e153f85597e056f5c51ade60fe29c45.zip |
Fixed spelling mistake in log message.
Change-Id: Ib43cca840a8f66b13d14a84b629068a53e8f4c9d
-rw-r--r-- | server/src/com/vaadin/server/communication/ServerRpcHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/server/communication/ServerRpcHandler.java b/server/src/com/vaadin/server/communication/ServerRpcHandler.java index f14d703454..ea25777525 100644 --- a/server/src/com/vaadin/server/communication/ServerRpcHandler.java +++ b/server/src/com/vaadin/server/communication/ServerRpcHandler.java @@ -366,7 +366,7 @@ public class ServerRpcHandler implements Serializable { "Ignoring RPC call to " + interfaceName + "." + methodName + " in connector " + connector.getClass().getName() + "(" + connectorId - + ") as no RPC implementation is regsitered"); + + ") as no RPC implementation is registered"); return null; } |