aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/output.go')
-rw-r--r--container/output.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/container/output.go b/container/output.go
index 6bedd55b..4fd9f095 100644
--- a/container/output.go
+++ b/container/output.go
@@ -17,10 +17,3 @@ func wrapErrSuffix(err error, a ...any) error {
}
return msg.WrapErr(err, append(a, err)...)
}
-
-func wrapErrSelf(err error) error {
- if err == nil {
- return nil
- }
- return msg.WrapErr(err, err.Error())
-}