From cd56d0a1d2b8aad468672775cac36408285af526 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 6 Feb 2013 18:06:23 -0800 Subject: [PATCH] Remove unneeded pack check --- src/app/atom.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/atom.coffee b/src/app/atom.coffee index 44bad21a5..ce0957998 100644 --- a/src/app/atom.coffee +++ b/src/app/atom.coffee @@ -25,7 +25,7 @@ _.extend atom, pack = Package.build(path) @loadedPackages.push(pack) if pack instanceof TextMatePackage and fs.base(pack.path) isnt 'text.tmbundle' - textMatePackages.push(pack) if pack + textMatePackages.push(pack) else pack.load()