From 30c4704b1394e3ca20425659579746d50410b864 Mon Sep 17 00:00:00 2001 From: Jeffrey 'jf' Lim Date: Mon, 2 Feb 2015 07:02:51 +0800 Subject: [PATCH] util.go: remove unused dateLayout from currentTimeRfc1123Formatted() --- clients/storage/util.go | 1 - 1 file changed, 1 deletion(-) diff --git a/clients/storage/util.go b/clients/storage/util.go index a3fa2bd80945..8a0f7b945092 100644 --- a/clients/storage/util.go +++ b/clients/storage/util.go @@ -20,7 +20,6 @@ func (c StorageClient) computeHmac256(message string) string { } func currentTimeRfc1123Formatted() string { - const dateLayout = http.TimeFormat // reuse from net/http package return timeRfc1123Formatted(time.Now().UTC()) }