Skip to content

Commit

Permalink
Remove pointless conjucntion in documentTracker
Browse files Browse the repository at this point in the history
  • Loading branch information
alexet committed Jan 23, 2019
1 parent 041b930 commit 16d3d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/merge-conflict/src/documentTracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default class DocumentMergeConflictTracker implements vscode.Disposable,
}

private getCacheKey(document: vscode.TextDocument): string | null {
if (document.uri && document.uri) {
if (document.uri) {
return document.uri.toString();
}

Expand Down

0 comments on commit 16d3d13

Please sign in to comment.