From ef4e86a124450a2cb8d6a00c75dd5e7cbbddf1e6 Mon Sep 17 00:00:00 2001 From: Tom Robinson Date: Mon, 22 Feb 2010 18:39:50 -0800 Subject: [PATCH] Remove StaticResource.prototype.type() --- Objective-J/StaticResource.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Objective-J/StaticResource.js b/Objective-J/StaticResource.js index a6fb810f8..238a8d718 100644 --- a/Objective-J/StaticResource.js +++ b/Objective-J/StaticResource.js @@ -206,11 +206,6 @@ StaticResource.prototype.children = function() return this._children; } -StaticResource.prototype.type = function() -{ - return this._type; -} - StaticResource.prototype.parent = function() { return this._parent; @@ -315,8 +310,7 @@ StaticResource.prototype.toString = function(/*BOOL*/ includeNotFounds) if (this.isNotFound()) return ""; - var string = this.parent() ? this.name() : "/", - type = this.type(); + var string = this.parent() ? this.name() : "/"; if (this.isDirectory()) {