From 8ae941be24d8348b9fb9e8886d7c62ed506dfb58 Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Mon, 18 Jul 2016 15:44:22 -0700 Subject: [PATCH] bad interface format --- value_provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/value_provider.go b/value_provider.go index ddb894a..90aec9d 100644 --- a/value_provider.go +++ b/value_provider.go @@ -19,7 +19,7 @@ type LastValueProvider interface { // BoundedLastValueProvider is a special type of value provider that can return it's (potentially computed) bounded last value. type BoundedLastValueProvider interface { - GetBoundedLastValue(index int) (x, y1, y2 float64) + GetBoundedLastValue() (x, y1, y2 float64) } // FullValueProvider is an interface that combines `ValueProvider` and `LastValueProvider`