move supportsSplitEditor to editor input and let it return true by default

This commit is contained in:
Benjamin Pasero
2016-06-09 08:08:42 +02:00
parent 2dbc938ccf
commit 4f335d86da
11 changed files with 18 additions and 40 deletions

View File

@@ -153,6 +153,10 @@ export class DiffEditorInput extends BaseDiffEditorInput {
});
}
public supportsSplitEditor(): boolean {
return false;
}
public matches(otherInput: any): boolean {
if (super.matches(otherInput) === true) {
return true;