From 250b3bb5795240d5ebdab5416ab99dbc41be734b Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 1 Mar 2020 20:59:19 +0100 Subject: Use upstream slack-go/slack again (#1018) --- vendor/github.com/nlopes/slack/internal/timex/timex.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 vendor/github.com/nlopes/slack/internal/timex/timex.go (limited to 'vendor/github.com/nlopes/slack/internal/timex') diff --git a/vendor/github.com/nlopes/slack/internal/timex/timex.go b/vendor/github.com/nlopes/slack/internal/timex/timex.go deleted file mode 100644 index 40063f73..00000000 --- a/vendor/github.com/nlopes/slack/internal/timex/timex.go +++ /dev/null @@ -1,18 +0,0 @@ -package timex - -import "time" - -// Max returns the maximum duration -func Max(values ...time.Duration) time.Duration { - var ( - max time.Duration - ) - - for _, v := range values { - if v > max { - max = v - } - } - - return max -} -- cgit v1.2.3