Skip to content

Commit 8a60882

Browse files
committed
refactor(main.go) remove unnecessary print statement in parseIni function
1 parent 41e5275 commit 8a60882

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

main.go

-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222
_ "embed"
2323
"encoding/json"
2424
"flag"
25-
"fmt"
2625
"html/template"
2726
"io"
2827
"os"
@@ -540,8 +539,6 @@ func parseIni(filename string) (args []string, err error) {
540539
return nil, err
541540
}
542541

543-
fmt.Println("Sections:", cfg.Sections())
544-
545542
for _, section := range cfg.Sections() {
546543
for key, val := range section.KeysHash() {
547544
// Ignore launchself

0 commit comments

Comments
 (0)