Skip to content
Snippets Groups Projects
Verified Commit 48c7b6de authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: remove printf

parent 80c98695
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,6 @@ package document
import (
"errors"
"fmt"
"os"
"path"
"path/filepath"
......@@ -52,10 +51,6 @@ func buildFileMap(files []*SourceFile) (SourceFileMap, []string) {
return files[i].relSourcePath < files[j].relSourcePath
})
for _, f := range files {
fmt.Println(f.relSourcePath, f.level)
}
keys := make([]string, 0, len(files))
mapFiles := make(map[string]*SourceFile)
for _, file := range files {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment