Skip to content

Commit

Permalink
Revert "fix resources#isEqual"
Browse files Browse the repository at this point in the history
This reverts commit 540fbab.
  • Loading branch information
jrieken committed Mar 11, 2020
1 parent 540fbab commit 0c1eb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/common/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function isEqual(first: URI | undefined, second: URI | undefined, ignoreC
return false;
}

if (first.scheme !== second.scheme || first.query !== second.query || !isEqualAuthority(first.authority, second.authority)) {
if (first.scheme !== second.scheme || !isEqualAuthority(first.authority, second.authority)) {
return false;
}

Expand Down

0 comments on commit 0c1eb03

Please sign in to comment.