提交 f5e9a017 编写于 作者: J Johannes Rieken

make default not ignore path casing, https://github.com/microsoft/vscode/issues/110241

上级 3bf2afdc
......@@ -235,7 +235,7 @@ export class TernarySearchTree<K, V> {
return new TernarySearchTree<URI, E>(new UriIterator(key => ignorePathCasing ?? (key.scheme === Schemas.file && isLinux)));
}
static forUris2<E>(ignorePathCasing: (key: URI) => boolean): TernarySearchTree<URI, E> {
static forUris2<E>(ignorePathCasing: (key: URI) => boolean = () => false): TernarySearchTree<URI, E> {
return new TernarySearchTree<URI, E>(new UriIterator(ignorePathCasing));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册