Remove accidental debug line

This commit is contained in:
Dane Everitt 2020-07-12 10:26:26 -07:00
parent 60ebde4447
commit eefc11bd0d
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -113,10 +113,6 @@ func (fs *Filesystem) SafePath(p string) (string, error) {
func (fs *Filesystem) ParallelSafePath(paths []string) ([]string, error) { func (fs *Filesystem) ParallelSafePath(paths []string) ([]string, error) {
var cleaned []string var cleaned []string
for _, ip := range paths {
fmt.Println(ip)
}
// Simple locker function to avoid racy appends to the array of cleaned paths. // Simple locker function to avoid racy appends to the array of cleaned paths.
var m = new(sync.Mutex) var m = new(sync.Mutex)
var push = func(c string) { var push = func(c string) {