From 46f0bfb9919675540e58621f84678feaff514232 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki & Nathan Sobo Date: Wed, 20 Mar 2013 10:55:00 -0600 Subject: [PATCH] Kill dead code --- src/app/text-mate-package.coffee | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/app/text-mate-package.coffee b/src/app/text-mate-package.coffee index cfad66e04..a6ddf0d03 100644 --- a/src/app/text-mate-package.coffee +++ b/src/app/text-mate-package.coffee @@ -76,18 +76,6 @@ class TextMatePackage extends Package scopedProperties - readObjectFromPath: (path, callback) -> - object = null - error = null - if CSON.isObjectPath(path) - object = CSON.readObject(path) - else - plist.parseString fs.read(path), (e, data) -> - error = e - object = data[0] - error = throw new Error("Failed to load object at path `#{path}`") unless object - callback(error, object) - getTextMatePreferenceObjects: -> preferenceObjects = [] if fs.exists(@preferencesPath)