From ed79925dd6c61c9a9c54f9cbd1b1478c47329734 Mon Sep 17 00:00:00 2001 From: Hongchao Deng Date: Mon, 15 Aug 2016 14:20:38 -0700 Subject: [PATCH] pkg/storage: remove unused Config --- pkg/storage/interfaces.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkg/storage/interfaces.go b/pkg/storage/interfaces.go index a1528864b63..a7231957359 100644 --- a/pkg/storage/interfaces.go +++ b/pkg/storage/interfaces.go @@ -186,13 +186,3 @@ type Interface interface { // Codec provides access to the underlying codec being used by the implementation. Codec() runtime.Codec } - -// Config interface allows storage tiers to generate the proper storage.interface -// and reduce the dependencies to encapsulate storage. -type Config interface { - // Creates the Interface base on ConfigObject - NewStorage() (Interface, error) - - // This function is used to enforce membership, and return the underlying type - GetType() string -}