提交 e0b7451d 编写于 作者: D Daniel Imms

Make TextFileService.getDirtyFileModels private again

上级 d10bfb83
......@@ -374,9 +374,9 @@ export abstract class TextFileService implements ITextFileService {
return this._models.getAll(<URI>arg1);
}
public getDirtyFileModels(resources?: URI[]): ITextFileEditorModel[];
public getDirtyFileModels(resource?: URI): ITextFileEditorModel[];
public getDirtyFileModels(arg1?: any): ITextFileEditorModel[] {
private getDirtyFileModels(resources?: URI[]): ITextFileEditorModel[];
private getDirtyFileModels(resource?: URI): ITextFileEditorModel[];
private getDirtyFileModels(arg1?: any): ITextFileEditorModel[] {
return this.getFileModels(arg1).filter(model => model.isDirty());
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册