remove: debug print

This commit is contained in:
TaurusXin 2025-02-01 18:12:20 +08:00
parent 84c2ee74bd
commit 2af15c5fcd

View File

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