aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/output.go')
-rw-r--r--container/output.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/container/output.go b/container/output.go
index 86f57c8a..4d799eb4 100644
--- a/container/output.go
+++ b/container/output.go
@@ -75,14 +75,3 @@ func (s *Suspendable) Resume() (resumed bool, dropped uintptr, n int64, err erro
}
return
}
-
-var msg Msg = new(DefaultMsg)
-
-func GetOutput() Msg { return msg }
-func SetOutput(v Msg) {
- if v == nil {
- msg = new(DefaultMsg)
- } else {
- msg = v
- }
-}