From 59ad8709842d2589436a71a9c01dc81066bd56ca Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Fri, 28 Aug 2015 15:54:40 -0700 Subject: [PATCH] Remove abortDownload for now --- CodePush.ios.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CodePush.ios.js b/CodePush.ios.js index 3f32796..7f99fe7 100644 --- a/CodePush.ios.js +++ b/CodePush.ios.js @@ -71,10 +71,6 @@ function download(updatePackage) { return NativeCodePush.downloadUpdate(updatePackage); } -function abortDownload() { - return NativeCodePush.abortDownload(); -} - function apply(updatePackage) { return NativeCodePush.applyUpdate(updatePackage); } @@ -87,7 +83,6 @@ var CodePush = { getConfiguration: getConfiguration, checkForUpdate: checkForUpdate, download: download, - abortDownload: abortDownload, apply: apply, getCurrentPackage: getCurrentPackage, setUpTestDependencies: setUpTestDependencies