summaryrefslogtreecommitdiffstats
path: root/cmd/platform/output.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-30 11:58:00 -0500
committerGitHub <noreply@github.com>2017-10-30 11:58:00 -0500
commit3cbacb6858ea2dda67719de64854ed30dea3b626 (patch)
tree8d0177242e65c809250fa73bd93faae26bd1ca10 /cmd/platform/output.go
parentc5e8cb25caa39ed018ede5270e1566e8f7448396 (diff)
downloadchat-3cbacb6858ea2dda67719de64854ed30dea3b626.tar.gz
chat-3cbacb6858ea2dda67719de64854ed30dea3b626.tar.bz2
chat-3cbacb6858ea2dda67719de64854ed30dea3b626.zip
Remove unused variables / code (#7736)
* remove unused variables / code * fix bug in testPostStoreGetOldest
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...)
-}