debt - less type cases

This commit is contained in:
Benjamin Pasero
2019-05-15 11:42:43 -07:00
parent c759b3e0dc
commit 376061acc4
28 changed files with 68 additions and 77 deletions

View File

@@ -636,8 +636,7 @@ export class SideBySideEditorInput extends EditorInput {
return false;
}
const otherDiffInput = <SideBySideEditorInput>otherInput;
return this.details.matches(otherDiffInput.details) && this.master.matches(otherDiffInput.master);
return this.details.matches(otherInput.details) && this.master.matches(otherInput.master);
}
return false;