summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/src/com/vaadin/server/communication/ServerRpcHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/server/communication/ServerRpcHandler.java b/server/src/com/vaadin/server/communication/ServerRpcHandler.java
index 9107a4e049..ae076e0856 100644
--- a/server/src/com/vaadin/server/communication/ServerRpcHandler.java
+++ b/server/src/com/vaadin/server/communication/ServerRpcHandler.java
@@ -91,8 +91,8 @@ public class ServerRpcHandler implements Serializable {
} else {
syncId = -1;
}
- invocations = new JSONArray(
- json.getString(ApplicationConstants.RPC_INVOCATIONS));
+ invocations = json
+ .getJSONArray(ApplicationConstants.RPC_INVOCATIONS);
}
/**