hot exit - add version id getters to models

This commit is contained in:
Benjamin Pasero
2016-11-22 12:56:34 +01:00
parent 1816ae96b0
commit ab9f0b741e
6 changed files with 37 additions and 14 deletions

View File

@@ -133,14 +133,6 @@ export class UntitledEditorInput extends AbstractUntitledEditorInput {
return null;
}
public getValue(): string {
if (this.cachedModel) {
return this.cachedModel.getValue();
}
return null;
}
public setEncoding(encoding: string, mode: EncodingMode /* ignored, we only have Encode */): void {
if (this.cachedModel) {
this.cachedModel.setEncoding(encoding);