Remove dead code

This removes dead code (functions that aren't called) detected with
`deadcode`.
This commit is contained in:
Alexander Neumann
2015-07-26 14:56:34 +02:00
parent 90ed679e88
commit 9753c37e31
4 changed files with 0 additions and 53 deletions

View File

@@ -76,10 +76,6 @@ func isDir(fi os.FileInfo) bool {
return fi.IsDir()
}
func isFile(fi os.FileInfo) bool {
return fi.Mode()&(os.ModeType|os.ModeCharDevice) == 0
}
var errCancelled = errors.New("walk cancelled")
// SelectFunc returns true for all items that should be included (files and