From 486bff44dffe78326b6064642e28a71455edb48e Mon Sep 17 00:00:00 2001 From: Aparajita Fishman Date: Sat, 6 Apr 2013 15:48:41 -0400 Subject: [PATCH] Fixed: wrong display name for CFBundle.bundleContainingURL. --- Objective-J/CFBundle.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Objective-J/CFBundle.js b/Objective-J/CFBundle.js index 34c443670..801f3d546 100644 --- a/Objective-J/CFBundle.js +++ b/Objective-J/CFBundle.js @@ -129,7 +129,8 @@ CFBundle.bundleWithIdentifier = function(/*String*/ bundleID) return CFBundlesWithIdentifiers[bundleID] || NULL; }; -DISPLAY_NAME(CFBundle.bundleContainingURL); +DISPLAY_NAME(CFBundle.bundleWithIdentifier); + CFBundle.prototype.bundleURL = function() { return this._bundleURL;