summaryrefslogtreecommitdiffstats
path: root/cmd/platform/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/platform/output.go')
-rw-r--r--cmd/platform/output.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/cmd/platform/output.go b/cmd/platform/output.go
index e4666910e..edf6ccc71 100644
--- a/cmd/platform/output.go
+++ b/cmd/platform/output.go
@@ -11,22 +11,10 @@ func CommandPrintln(a ...interface{}) (int, error) {
return fmt.Println(a...)
}
-func CommandPrint(a ...interface{}) (int, error) {
- return fmt.Print(a...)
-}
-
func CommandPrintErrorln(a ...interface{}) (int, error) {
return fmt.Fprintln(os.Stderr, a...)
}
-func CommandPrintError(a ...interface{}) (int, error) {
- return fmt.Fprint(os.Stderr, a...)
-}
-
func CommandPrettyPrintln(a ...interface{}) (int, error) {
return fmt.Fprintln(os.Stderr, a...)
}
-
-func CommandPrettyPrint(a ...interface{}) (int, error) {
- return fmt.Fprint(os.Stderr, a...)
-}