diff --git a/src/vs/base/node/pfs.ts b/src/vs/base/node/pfs.ts index 3b284df15df..99258377daa 100644 --- a/src/vs/base/node/pfs.ts +++ b/src/vs/base/node/pfs.ts @@ -637,10 +637,3 @@ export async function exists(path: string): Promise { } //#endregion - -// TODO@bpasero remove me -export function readFile(path: string): Promise; -export function readFile(path: string, encoding: string): Promise; -export function readFile(path: string, encoding?: string): Promise { - return fs.promises.readFile(path, encoding); -}