diff options
author | Artur Signell <artur@vaadin.com> | 2012-12-13 20:03:51 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-12-13 20:03:51 +0200 |
commit | d10e758c693d652dd5767ca53dab4bef52ff5a1a (patch) | |
tree | 0e950d91a23ff23dfc421f277337e40efc447894 /client | |
parent | eced3091e368bb6a4bb36c3df0d2567668ba6c72 (diff) | |
download | vaadin-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.java | 4 |
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(); |