From 30ba42cf46253db932b907c4a958aabbd6ee7e7e Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 4 Feb 2021 11:29:58 +0100 Subject: [PATCH] fs - fix leftover todo --- src/vs/base/node/pfs.ts | 7 ------- 1 file changed, 7 deletions(-) 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); -}