From 8197c52da8c333ffabf7a185106cf7017e777997 Mon Sep 17 00:00:00 2001 From: JrMasterModelBuilder Date: Mon, 2 Oct 2023 02:12:00 -0400 Subject: [PATCH] Code cleanup --- src/util.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/util.ts b/src/util.ts index d8f89d6..3b4d4c8 100644 --- a/src/util.ts +++ b/src/util.ts @@ -83,8 +83,6 @@ export function modeToPathType(mode: number) { if (bitwiseAndEqual(mode, 0o0100000)) { return PathType.FILE; } - - // Unsupported type. return null; }