remove: debug print

This commit is contained in:
TaurusXin 2025-02-01 18:12:20 +08:00
parent bc67dab122
commit e4f2d1aaab
Signed by: taurusxin
GPG Key ID: C334DCA04AC2D2CC

View File

@ -2,7 +2,6 @@ package utils
import ( import (
"encoding/json" "encoding/json"
"fmt"
"os" "os"
"path/filepath" "path/filepath"
) )
@ -75,7 +74,6 @@ func (cm *ConfigManager) Load() *Preference {
var preference *Preference = nil var preference *Preference = nil
decoder := json.NewDecoder(file) decoder := json.NewDecoder(file)
err = decoder.Decode(&preference) err = decoder.Decode(&preference)
fmt.Println(preference)
if err != nil { if err != nil {
return nil return nil
} }