]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed typo in method name 00/500/1
authorArtur Signell <artur@vaadin.com>
Thu, 13 Dec 2012 18:03:51 +0000 (20:03 +0200)
committerArtur Signell <artur@vaadin.com>
Thu, 13 Dec 2012 18:03:51 +0000 (20:03 +0200)
Change-Id: Ib3c401ea618c6141617f527a191eb4f72ebdfaf4

client/src/com/vaadin/client/communication/JsonEncoder.java

index 162becf8ff39a9444fd3387ff5b5c9f5df878bea..0756d6b069ea7ec87fc791f4675cf517f09b289e 100644 (file)
@@ -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();