From d10e758c693d652dd5767ca53dab4bef52ff5a1a Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 13 Dec 2012 20:03:51 +0200 Subject: [PATCH] Fixed typo in method name Change-Id: Ib3c401ea618c6141617f527a191eb4f72ebdfaf4 --- client/src/com/vaadin/client/communication/JsonEncoder.java | 4 ++-- 1 file 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 map, + private static JSONValue encodeConnectorMap(Map map, ApplicationConnection connection) { JSONObject jsonMap = new JSONObject(); -- 2.39.5