From e04ecf836f6d08634552679bfc8de80351d04f87 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 8 Feb 2013 13:00:06 -0800 Subject: [PATCH] Remove autoloadStylesheets ivar This is no longer used now that the deferred package has been deleted. --- src/app/atom-package.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/atom-package.coffee b/src/app/atom-package.coffee index 149840b9d..1449bb337 100644 --- a/src/app/atom-package.coffee +++ b/src/app/atom-package.coffee @@ -7,7 +7,6 @@ module.exports = class AtomPackage extends Package metadata: null keymapsDirPath: null - autoloadStylesheets: true constructor: -> super @@ -17,7 +16,7 @@ class AtomPackage extends Package try @loadMetadata() @loadKeymaps() - @loadStylesheets() if @autoloadStylesheets + @loadStylesheets() activationEvents = @getActivationEvents() if activationEvents and not activateImmediately @subscribeToActivationEvents(activationEvents)