Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 18680E5B1 for ; Wed, 27 Feb 2013 21:09:59 +0000 (UTC) Received: (qmail 21086 invoked by uid 500); 27 Feb 2013 21:09:57 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 21030 invoked by uid 500); 27 Feb 2013 21:09:57 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 20290 invoked by uid 99); 27 Feb 2013 21:09:57 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2013 21:09:57 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BFEA710384; Wed, 27 Feb 2013 21:09:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gtanner@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [9/31] js commit: [all] Remove remaining usage of builder. Message-Id: <20130227210956.BFEA710384@tyr.zones.apache.org> Date: Wed, 27 Feb 2013 21:09:56 +0000 (UTC) [all] Remove remaining usage of builder. https://issues.apache.org/jira/browse/CB-2227 Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/cded0ad0 Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/cded0ad0 Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/cded0ad0 Branch: refs/heads/next Commit: cded0ad0826489ca07ae8bdd33905a37d40f3adf Parents: c169dea Author: Andrew Grieve Authored: Fri Jan 25 16:03:19 2013 -0500 Committer: Andrew Grieve Committed: Wed Feb 20 15:13:27 2013 -0500 ---------------------------------------------------------------------- lib/scripts/bootstrap.js | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/cded0ad0/lib/scripts/bootstrap.js ---------------------------------------------------------------------- diff --git a/lib/scripts/bootstrap.js b/lib/scripts/bootstrap.js index 45c70aa..4206c60 100644 --- a/lib/scripts/bootstrap.js +++ b/lib/scripts/bootstrap.js @@ -35,12 +35,7 @@ * Create all cordova objects once page has fully loaded and native side is ready. */ channel.join(function() { - var builder = require('cordova/builder'), - platform = require('cordova/platform'); - - builder.buildIntoButDoNotClobber(platform.defaults, context); - builder.buildIntoAndClobber(platform.clobbers, context); - builder.buildIntoAndMerge(platform.merges, context); + var platform = require('cordova/platform'); // Call the platform-specific initialization platform.initialize();