summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsrinivasreddy <thatiparthysreenivas@gmail.com>2016-03-12 23:46:31 +0530
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-17 20:11:29 +0100
commit21054f730af52efbef22f5986daf97a52d6630de (patch)
treed9d549d130128da483cd2346a5064daf26ddd8d0
parentdf44b1930a8b5be8959a808fc788a42c6b0166bb (diff)
source: Consolidate filepath.Split calls
-rw-r--r--source/file.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/file.go b/source/file.go
index efe604912..2bd6d2e1c 100644
--- a/source/file.go
+++ b/source/file.go
@@ -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())