From 50805d1f6053b8299c8e70e899d1165f8baee9b8 Mon Sep 17 00:00:00 2001 From: Jim Date: Wed, 13 Jun 2018 06:33:23 -0700 Subject: [PATCH] Removes comment about non-existent method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IValueFormatter had a comment suggesting that you can override the getFormattedValue(…) method but that method doesn’t exist. The comment has been removed. --- Source/Charts/Formatters/IValueFormatter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Charts/Formatters/IValueFormatter.swift b/Source/Charts/Formatters/IValueFormatter.swift index bd7c0c90f8..e463accf9a 100644 --- a/Source/Charts/Formatters/IValueFormatter.swift +++ b/Source/Charts/Formatters/IValueFormatter.swift @@ -15,7 +15,7 @@ import Foundation /// /// Simply create your own formatting class and let it implement ValueFormatter. /// -/// Then override the getFormattedValue(...) method and return whatever you want. + @objc(IChartValueFormatter) public protocol IValueFormatter: class {