Commit d2c1b253 by Sebastian Roth

Add a missing return statement after a result.error response is sent.

parent a9754b56
...@@ -202,6 +202,7 @@ public class PermissionHandlerPlugin implements MethodCallHandler { ...@@ -202,6 +202,7 @@ public class PermissionHandlerPlugin implements MethodCallHandler {
"ERROR_ALREADY_REQUESTING_PERMISSIONS", "ERROR_ALREADY_REQUESTING_PERMISSIONS",
"A request for permissions is already running, please wait for it to finish before doing another request (note that you can request multiple permissions at the same time).", "A request for permissions is already running, please wait for it to finish before doing another request (note that you can request multiple permissions at the same time).",
null); null);
return;
} }
mResult = result; mResult = result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment