indentation changes

This commit is contained in:
kieferrm
2017-09-25 16:48:46 -07:00
committed by Kai Maetzel
parent f244a4f70e
commit 08d8f0f9f6
88 changed files with 1119 additions and 1120 deletions

View File

@@ -141,10 +141,10 @@ export class MainThreadEditors implements MainThreadEditorsShape {
$tryShowEditor(id: string, position: EditorPosition): TPromise<void> {
// check how often this is used
/* __GDPR__
"api.deprecated" : {
"function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
"api.deprecated" : {
"function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
this._telemetryService.publicLog('api.deprecated', { function: 'TextEditor.show' });
let mainThreadEditor = this._documentsAndEditors.getEditor(id);
@@ -161,10 +161,10 @@ export class MainThreadEditors implements MainThreadEditorsShape {
$tryHideEditor(id: string): TPromise<void> {
// check how often this is used
/* __GDPR__
"api.deprecated" : {
"function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
"api.deprecated" : {
"function" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
this._telemetryService.publicLog('api.deprecated', { function: 'TextEditor.hide' });
let mainThreadEditor = this._documentsAndEditors.getEditor(id);