diff options
author | Leif Åstrand <leif@vaadin.com> | 2016-05-13 15:01:50 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-05-16 05:50:00 +0000 |
commit | 014997af24b3b8b78bb5a0fb0b7bba3bff11218c (patch) | |
tree | 3a056091951f8ea0f45b4d324559df14cf452cfc | |
parent | 7f3481b7a69d9edc31c7e70b305ece6816eee36f (diff) | |
download | vaadin-framework-014997af24b3b8b78bb5a0fb0b7bba3bff11218c.tar.gz vaadin-framework-014997af24b3b8b78bb5a0fb0b7bba3bff11218c.zip |
Fix typo in VariableOwner error message
Change-Id: I80f038903e0f32e8b6cb38d6e7931362c4f0f285
-rw-r--r-- | server/src/main/java/com/vaadin/server/communication/ServerRpcHandler.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/server/src/main/java/com/vaadin/server/communication/ServerRpcHandler.java b/server/src/main/java/com/vaadin/server/communication/ServerRpcHandler.java index be261ede92..03770d683e 100644 --- a/server/src/main/java/com/vaadin/server/communication/ServerRpcHandler.java +++ b/server/src/main/java/com/vaadin/server/communication/ServerRpcHandler.java @@ -157,7 +157,7 @@ public class ServerRpcHandler implements Serializable { /** * Checks if this is a request to resynchronize the client side - * + * * @return true if this is a resynchronization request, false otherwise */ public boolean isResynchronize() { @@ -166,7 +166,7 @@ public class ServerRpcHandler implements Serializable { /** * Gets the id of the client to server message - * + * * @since 7.6 * @return the server message id */ @@ -190,7 +190,7 @@ public class ServerRpcHandler implements Serializable { /** * Gets the widget set version reported by the client - * + * * @since 7.6 * @return The widget set version reported by the client or null if the * message did not contain a widget set version @@ -286,7 +286,7 @@ public class ServerRpcHandler implements Serializable { /** * Checks that the version reported by the client (widgetset) matches that * of the server. - * + * * @param widgetsetVersion * the widget set version reported by the client or null */ @@ -422,7 +422,7 @@ public class ServerRpcHandler implements Serializable { /** * Handles the given RPC method invocation for the given connector - * + * * @since 7.7 * @param ui * the UI containing the connector @@ -445,7 +445,7 @@ public class ServerRpcHandler implements Serializable { /** * Handles the given Legacy variable change RPC method invocation for the * given connector - * + * * @since 7.7 * @param ui * the UI containing the connector @@ -463,11 +463,11 @@ public class ServerRpcHandler implements Serializable { changeVariables(null, (VariableOwner) connector, changes); } else { throw new IllegalStateException( - "Received legacy variable change for " + "Received a legacy variable change for " + connector.getClass().getName() + " (" + connector.getConnectorId() - + ") which is not a VariableOwner. The client-side connector sent these legacy varaibles: " + + ") which is not a VariableOwner. The client-side connector sent these legacy variables: " + changes.keySet()); } } catch (Exception e) { |