Ver Fonte

delete print statement

xormplus há 7 anos atrás
pai
commit
2eecae3b72
1 ficheiros alterados com 1 adições e 2 exclusões
  1. 1 2
      sqlmap.go

+ 1 - 2
sqlmap.go

@@ -5,7 +5,6 @@ import (
 	"bytes"
 	"encoding/json"
 	"encoding/xml"
-	"fmt"
 	"io/ioutil"
 	"os"
 	"strings"
@@ -57,7 +56,7 @@ func (sqlMap *SqlMap) walkFunc(path string, info os.FileInfo, err error) error {
 func (sqlMap *SqlMap) paresSql(filepath string) error {
 
 	content, err := ioutil.ReadFile(filepath)
-	fmt.Println("filepath:", filepath)
+
 	if err != nil {
 		return err
 	}