From ccb261f00d5200b09c95f982cb3c7ef5e54cc781 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 23 Nov 2019 21:00:20 +0300 Subject: [PATCH] os: fix unreachable code --- vlib/os/os.v | 1 - 1 file changed, 1 deletion(-) diff --git a/vlib/os/os.v b/vlib/os/os.v index 21e2035855..17c33a2a49 100644 --- a/vlib/os/os.v +++ b/vlib/os/os.v @@ -882,7 +882,6 @@ pub fn realpath(fpath string) string { } return string(fullpath) } - return fpath } // walk_ext returns a recursive list of all file paths ending with `ext`.