diff --git a/www/rootdetection.js b/www/rootdetection.js index af07f6b..ac86ac4 100644 --- a/www/rootdetection.js +++ b/www/rootdetection.js @@ -1,5 +1,5 @@ var exec = require('cordova/exec'); -exports.isDeviceRooted = function(arg0, success, error) { - exec(success, error, "RootDetection", "isDeviceRooted", [arg0]); +exports.isDeviceRooted = function(success, error) { + exec(success, error, "RootDetection", "isDeviceRooted", []); };