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