diff --git a/framework/src/org/apache/cordova/NativeToJsMessageQueue.java b/framework/src/org/apache/cordova/NativeToJsMessageQueue.java index ea684a42..8a13213f 100755 --- a/framework/src/org/apache/cordova/NativeToJsMessageQueue.java +++ b/framework/src/org/apache/cordova/NativeToJsMessageQueue.java @@ -50,13 +50,10 @@ public class NativeToJsMessageQueue { // exec() is asynchronous. Set this to true when running bridge benchmarks. static final boolean DISABLE_EXEC_CHAINING = false; - // Upper limit for how much data to send to JS in one shot. - // TODO(agrieve): This is currently disable. It should be re-enabled once we - // remove support for returning values from exec() calls. This was - // deprecated in 2.2.0. - // Also, this currently only chops up on message boundaries. It may be useful + // Arbitrarily chosen upper limit for how much data to send to JS in one shot. + // This currently only chops up on message boundaries. It may be useful // to allow it to break up messages. - private static int MAX_PAYLOAD_SIZE = -1; //50 * 1024 * 10240; + private static int MAX_PAYLOAD_SIZE = 50 * 1024 * 10240; /** * The index into registeredListeners to treat as active.