From bd3fa6a7c5e5d4783036143215284b7d5b3e8bf1 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 2 Nov 2016 17:44:57 +0000 Subject: [PATCH] Move version specific stuff to vector --- src/BasePlatform.js | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/BasePlatform.js b/src/BasePlatform.js index aed568552a..2b5e89942e 100644 --- a/src/BasePlatform.js +++ b/src/BasePlatform.js @@ -38,21 +38,4 @@ export default class BasePlatform { displayNotification(title: string, msg: string, avatarUrl: string) { } - - /** - * Check for the availability of an update to the version of the - * app that's currently running. - * If an update is available, this function should dispatch the - * 'new_version' action. - */ - pollForUpdate() { - } - - /** - * Update the currently running app to the latest available - * version and replace this instance of the app with the - * new version. - */ - installUpdate() { - } }