summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-12-13 20:03:51 +0200
committerArtur Signell <artur@vaadin.com>2012-12-13 20:03:51 +0200
commitd10e758c693d652dd5767ca53dab4bef52ff5a1a (patch)
tree0e950d91a23ff23dfc421f277337e40efc447894 /client
parenteced3091e368bb6a4bb36c3df0d2567668ba6c72 (diff)
downloadvaadin-framework-d10e758c693d652dd5767ca53dab4bef52ff5a1a.tar.gz
vaadin-framework-d10e758c693d652dd5767ca53dab4bef52ff5a1a.zip
Fixed typo in method name
Change-Id: Ib3c401ea618c6141617f527a191eb4f72ebdfaf4
Diffstat (limited to 'client')
-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();