From ea0e61e6a47a75d31e4e07a8539457dd4e83d603 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 18 Jan 2017 23:47:42 -0800 Subject: [PATCH] Remove unused function --- src/docker.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/docker.js b/src/docker.js index 282a7f40d..4d6462147 100644 --- a/src/docker.js +++ b/src/docker.js @@ -54,14 +54,6 @@ function debugApp(app, args) { debug(prefix + ' ' + util.format.apply(util, Array.prototype.slice.call(arguments, 1))); } -function targetBoxVersion(manifest) { - if ('targetBoxVersion' in manifest) return manifest.targetBoxVersion; - - if ('minBoxVersion' in manifest) return manifest.minBoxVersion; - - return '99999.99999.99999'; // compatible with the latest version -} - function pullImage(manifest, callback) { var docker = exports.connection;