From 1f819173d02234e461e3933ab6cf13988dbd29fa Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Mon, 1 Mar 2021 13:50:08 +0200 Subject: [PATCH] source: drop stale BoolFeatureValue type --- source/source.go | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/source/source.go b/source/source.go index 0daaffba5..edd51449f 100644 --- a/source/source.go +++ b/source/source.go @@ -17,18 +17,7 @@ limitations under the License. package source // Value of a feature -type FeatureValue interface { -} - -// Boolean feature value -type BoolFeatureValue bool - -func (b BoolFeatureValue) String() string { - if b { - return "true" - } - return "false" -} +type FeatureValue interface{} type Features map[string]FeatureValue