提交 2da0f221 编写于 作者: J Johannes Rieken

remove some code, bring some code back

上级 51f2531b
...@@ -27,6 +27,11 @@ export class MarkdownString implements IMarkdownString { ...@@ -27,6 +27,11 @@ export class MarkdownString implements IMarkdownString {
return this; return this;
} }
appendMarkdown(value: string): MarkdownString {
this.value += value;
return this;
}
appendCodeblock(langId: string, code: string): MarkdownString { appendCodeblock(langId: string, code: string): MarkdownString {
this.value += '\n```'; this.value += '\n```';
this.value += langId; this.value += langId;
......
...@@ -190,7 +190,6 @@ class BulkEditModel implements IDisposable { ...@@ -190,7 +190,6 @@ class BulkEditModel implements IDisposable {
private _textModelResolverService: ITextModelService; private _textModelResolverService: ITextModelService;
private _numberOfResourcesToModify: number = 0; private _numberOfResourcesToModify: number = 0;
private _numberOfChanges: number = 0;
private _edits: IStringDictionary<IResourceEdit[]> = Object.create(null); private _edits: IStringDictionary<IResourceEdit[]> = Object.create(null);
private _tasks: EditTask[]; private _tasks: EditTask[];
private _sourceModel: URI; private _sourceModel: URI;
...@@ -208,21 +207,12 @@ class BulkEditModel implements IDisposable { ...@@ -208,21 +207,12 @@ class BulkEditModel implements IDisposable {
} }
} }
public resourcesCount(): number {
return this._numberOfResourcesToModify;
}
public changeCount(): number {
return this._numberOfChanges;
}
private _addEdit(edit: IResourceEdit): void { private _addEdit(edit: IResourceEdit): void {
let array = this._edits[edit.resource.toString()]; let array = this._edits[edit.resource.toString()];
if (!array) { if (!array) {
this._edits[edit.resource.toString()] = array = []; this._edits[edit.resource.toString()] = array = [];
this._numberOfResourcesToModify += 1; this._numberOfResourcesToModify += 1;
} }
this._numberOfChanges += 1;
array.push(edit); array.push(edit);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册