mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
debt - less type cases
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user