helpers: Don't clean path twice
authorAlbert Nigmatzianov <albertnigma@gmail.com>
Sun, 7 May 2017 15:16:36 +0000 (17:16 +0200)
committerAlbert Nigmatzianov <albertnigma@gmail.com>
Sun, 7 May 2017 15:16:36 +0000 (17:16 +0200)
Join calls Clean as it says in docs.

Minor performance improvement:
Before:
Average time per operation: 432ms
Average memory allocated per operation: 127322kB
Average allocations per operation: 2138137

After:
Average time per operation: 428ms
Average memory allocated per operation: 127350kB
Average allocations per operation: 2137892

helpers/path.go

index 554e9977d60686f4d9d55ad4d4bcc02a5e6e568e..d246b57c3c44508dabdf603de7a6a45ebf812f41 100644 (file)
@@ -158,7 +158,7 @@ func (p *PathSpec) AbsPathify(inPath string) string {
        }
 
        // TODO(bep): Consider moving workingDir to argument list
-       return filepath.Clean(filepath.Join(p.workingDir, inPath))
+       return filepath.Join(p.workingDir, inPath)
 }
 
 // GetLayoutDirPath returns the absolute path to the layout file dir