This commit is contained in:
Joao Moreno 2016-08-08 16:47:20 +02:00
parent b59a62206c
commit 183e4e8e4e

View file

@ -200,14 +200,13 @@
timers.beforeLoad = new Date();
require([
'vs/workbench/electron-browser/main',
'vs/workbench/workbench.main',
'vs/nls!vs/workbench/workbench.main',
'vs/css!vs/workbench/workbench.main'
], (main) => {
], () => {
timers.afterLoad = new Date();
main
const main = require('vs/workbench/electron-browser/main')
.startup(configuration, globalSettings)
.done(null, error => onError(error, enableDeveloperTools));
});