Skip to content

Commit 81285e3

Browse files
committed
First release
1 parent 32e1984 commit 81285e3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

convert.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,16 @@ import (
1010
func convert(inFormat string, outFormat string, paramsets [][]param.IParam, out string) {
1111
config.Default.HttpClient = newHttpClient()
1212
wg := &sync.WaitGroup{}
13-
// debug(paramsets)
1413
for _, set := range paramsets {
15-
// debug("Uploading ", set)
1614
if err := prepare(set); err != nil {
1715
printError(err, 1)
1816
}
19-
// debug("Converting ", set)
2017

2118
wg.Add(1)
2219
go func(set []param.IParam) {
2320
defer wg.Done()
2421
res := convertapi.Convert(inFormat, outFormat, set, nil)
2522
if files, err := res.Files(); err == nil {
26-
// debug("Downloading ", set)
2723
for _, file := range files {
2824
output(file, out)
2925
}

0 commit comments

Comments
 (0)