Revert "Merge branch 'master' into 0.58-stable"

This reverts commit 696bd89013, reversing
changes made to a525941ab6.
This commit is contained in:
Mike Grabowski
2018-11-22 17:53:44 +01:00
parent 696bd89013
commit b864e7e63e
135 changed files with 1214 additions and 2522 deletions
+2 -1
View File
@@ -18,7 +18,7 @@ namespace react {
static const char *errorPrefix = "Malformed calls from JS: ";
std::vector<MethodCall> parseMethodCalls(folly::dynamic&& jsonData) {
std::vector<MethodCall> parseMethodCalls(folly::dynamic&& jsonData) throw(std::invalid_argument) {
if (jsonData.isNull()) {
return {};
}
@@ -77,3 +77,4 @@ std::vector<MethodCall> parseMethodCalls(folly::dynamic&& jsonData) {
}
}}