source: Consolidate filepath.Split calls
authorsrinivasreddy <thatiparthysreenivas@gmail.com>
Sat, 12 Mar 2016 18:16:31 +0000 (23:46 +0530)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Mar 2016 19:11:29 +0000 (20:11 +0100)
source/file.go

index efe604912ecfdacb64d7a55bda3c0d6600bcc34c..2bd6d2e1cb316dc39f99f5c15dc4def2dddefc8d 100644 (file)
@@ -92,8 +92,7 @@ func NewFile(relpath string) *File {
                relpath: relpath,
        }
 
-       f.dir, _ = filepath.Split(f.relpath)
-       _, f.logicalName = filepath.Split(f.relpath)
+       f.dir, f.logicalName = filepath.Split(f.relpath)
        f.ext = strings.TrimPrefix(filepath.Ext(f.LogicalName()), ".")
        f.section = helpers.GuessSection(f.Dir())
        f.uniqueID = helpers.Md5String(f.LogicalName())