Revert addition of final modifier to JSON formatter

This commit is contained in:
Tim Wojtulewicz 2020-05-06 10:40:09 -07:00
parent 39c00c9966
commit 8ac591c9f5
3 changed files with 6 additions and 2 deletions

View file

@ -14,7 +14,7 @@ namespace threading { namespace formatter {
* A thread-safe class for converting values into a JSON representation
* and vice versa.
*/
class JSON final : public Formatter {
class JSON : public Formatter {
public:
enum TimeFormat {
TS_EPOCH, // Doubles that represents seconds from the UNIX epoch.