]> 127.0.0.1 Git - part/.git/commitdiff
1 (#14) v0.28.20250120190624
authorqydysky <qydysky@foxmail.com>
Mon, 20 Jan 2025 19:01:02 +0000 (03:01 +0800)
committerGitHub <noreply@github.com>
Mon, 20 Jan 2025 19:01:02 +0000 (03:01 +0800)
errors/errors.go

index e83fdf41c3688f642568e1a3bae3141dd45f093a..fe1e39d15d00b94bc7f5af725a508ccfba698795 100644 (file)
@@ -2,7 +2,6 @@ package errors
 
 import (
        "errors"
-       "fmt"
 )
 
 type Action string
@@ -29,7 +28,6 @@ type Error struct {
 }
 
 func (t Error) Is(e error) bool {
-       fmt.Println(t, e)
        return t.Error() == e.Error()
 }