提交 2f4af974 编写于 作者: B Benjamin Pasero

sqlite - remove storageHome for now

上级 3ba85cbc
......@@ -99,8 +99,7 @@ function createPaths(environmentService: IEnvironmentService): TPromise<any> {
environmentService.appSettingsHome,
environmentService.extensionsPath,
environmentService.nodeCachedDataDir,
environmentService.logsPath,
environmentService.storageHome
environmentService.logsPath
];
return TPromise.join(paths.map(p => p && mkdirp(p))) as TPromise<any>;
......
......@@ -105,8 +105,6 @@ export interface IEnvironmentService {
backupHome: string;
backupWorkspacesPath: string;
storageHome: string;
workspacesHome: string;
isExtensionDevelopment: boolean;
......
......@@ -124,9 +124,6 @@ export class EnvironmentService implements IEnvironmentService {
@memoize
get backupHome(): string { return path.join(this.userDataPath, 'Backups'); }
@memoize
get storageHome(): string { return path.join(this.userDataPath, 'Storage'); }
@memoize
get backupWorkspacesPath(): string { return path.join(this.backupHome, 'workspaces.json'); }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册