From 014997af24b3b8b78bb5a0fb0b7bba3bff11218c Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Fri, 13 May 2016 15:01:50 +0300 Subject: Fix typo in VariableOwner error message Change-Id: I80f038903e0f32e8b6cb38d6e7931362c4f0f285 --- .../vaadin/server/communication/ServerRpcHandler.java | 16 ++++++++-------- 1 file 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) { -- cgit v1.2.3