From 29b46a23951e8c421a035504ae6c42d9956beb79 Mon Sep 17 00:00:00 2001 From: Hongchao Deng Date: Sun, 20 Mar 2016 15:18:27 -0700 Subject: [PATCH] integration/framework: remove unused NewEtcdStorage() In integration/, framework.NewEtcdStorage() isn't used by any function. --- test/integration/framework/etcd_utils.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/integration/framework/etcd_utils.go b/test/integration/framework/etcd_utils.go index cdd7fbdc80b..64e1ecb1c7c 100644 --- a/test/integration/framework/etcd_utils.go +++ b/test/integration/framework/etcd_utils.go @@ -48,10 +48,6 @@ func NewEtcdClient() etcd.Client { return client } -func NewEtcdStorage() storage.Interface { - return etcdstorage.NewEtcdStorage(NewEtcdClient(), testapi.Default.Codec(), etcdtest.PathPrefix(), false) -} - func NewAutoscalingEtcdStorage(client etcd.Client) storage.Interface { if client == nil { client = NewEtcdClient()