From 892e19c01976c452649247c6be7c219159c285a9 Mon Sep 17 00:00:00 2001 From: Jean-Laurent de Morlhon Date: Thu, 3 Dec 2015 15:42:09 +0100 Subject: [PATCH] delete unused method Signed-off-by: Jean-Laurent de Morlhon --- libmachine/log/log.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libmachine/log/log.go b/libmachine/log/log.go index ba5a7641c4..d2897ea7c2 100644 --- a/libmachine/log/log.go +++ b/libmachine/log/log.go @@ -46,10 +46,6 @@ func Errorf(fmtString string, args ...interface{}) { l.Errorf(fmtString, args...) } -func Errorln(args ...interface{}) { - l.Errorln(args...) -} - func Info(args ...interface{}) { l.Info(args...) } @@ -58,9 +54,6 @@ func Infof(fmtString string, args ...interface{}) { l.Infof(fmtString, args...) } -func Infoln(args ...interface{}) { - l.Infoln(args...) -} func Fatal(args ...interface{}) { l.Fatal(args...)