Remove blob store and native module cache

This commit is contained in:
Antonio Scandurra
2017-02-28 17:20:49 +01:00
parent deb94f6f4a
commit e275570a4e
11 changed files with 5 additions and 476 deletions

View File

@@ -5,7 +5,7 @@ cloneObject = (object) ->
clone[key] = value for key, value of object
clone
module.exports = ({blobStore}) ->
module.exports = ->
startCrashReporter = require('./crash-reporter-start')
{remote} = require 'electron'
@@ -77,7 +77,6 @@ module.exports = ({blobStore}) ->
buildAtomEnvironment = (params) ->
params = cloneObject(params)
params.clipboard = clipboard unless params.hasOwnProperty("clipboard")
params.blobStore = blobStore unless params.hasOwnProperty("blobStore")
params.onlyLoadBaseStyleSheets = true unless params.hasOwnProperty("onlyLoadBaseStyleSheets")
new AtomEnvironment(params)