fix imports to single quote

This commit is contained in:
Benjamin Pasero
2017-08-21 11:27:57 +02:00
parent 854c54f4fe
commit a87dd9c7ad
98 changed files with 239 additions and 239 deletions

View File

@@ -19,12 +19,12 @@ import { Position as EditorPosition, IEditor } from 'vs/platform/editor/common/e
import { extHostCustomer } from "vs/workbench/api/electron-browser/extHostCustomers";
import { MainThreadDocuments } from "vs/workbench/api/electron-browser/mainThreadDocuments";
import { MainThreadEditors } from "vs/workbench/api/electron-browser/mainThreadEditors";
import { IModeService } from "vs/editor/common/services/modeService";
import { IFileService } from "vs/platform/files/common/files";
import { ITextModelService } from "vs/editor/common/services/resolverService";
import { IUntitledEditorService } from "vs/workbench/services/untitled/common/untitledEditorService";
import { IEditorGroupService } from "vs/workbench/services/group/common/groupService";
import { ITelemetryService } from "vs/platform/telemetry/common/telemetry";
import { IModeService } from 'vs/editor/common/services/modeService';
import { IFileService } from 'vs/platform/files/common/files';
import { ITextModelService } from 'vs/editor/common/services/resolverService';
import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService';
import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService';
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
namespace cmp {
export function compareModels(a: IModel, b: IModel): number {