summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/communication/JsonEncoder.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/communication/JsonEncoder.java b/client/src/com/vaadin/client/communication/JsonEncoder.java
index 162becf8ff..0756d6b069 100644
--- a/client/src/com/vaadin/client/communication/JsonEncoder.java
+++ b/client/src/com/vaadin/client/communication/JsonEncoder.java
@@ -176,7 +176,7 @@ public class JsonEncoder {
throw new IllegalStateException(
"Only string keys supported for legacy maps");
} else if (firstKey instanceof Connector) {
- return encodeConenctorMap(map, connection);
+ return encodeConnectorMap(map, connection);
} else {
return encodeObjectMap(map, connection);
}
@@ -200,7 +200,7 @@ public class JsonEncoder {
return keysAndValues;
}
- private static JSONValue encodeConenctorMap(Map<Object, Object> map,
+ private static JSONValue encodeConnectorMap(Map<Object, Object> map,
ApplicationConnection connection) {
JSONObject jsonMap = new JSONObject();