diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/NormalizePhoneNumbersVisitor.h b/hoot-core/src/main/cpp/hoot/core/visitors/NormalizePhoneNumbersVisitor.h
index 384b62c..a62a426 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/NormalizePhoneNumbersVisitor.h
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/NormalizePhoneNumbersVisitor.h
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#ifndef NORMALIZE_PHONE_NUMBERS_VISITOR_H
@@ -32,7 +32,6 @@
#include <hoot/core/elements/ElementVisitor.h>
#include <hoot/core/conflate/phone/PhoneNumberNormalizer.h>
#include <hoot/core/util/Configurable.h>
-#include <hoot/core/info/OperationStatusInfo.h>
namespace hoot
{
@@ -40,8 +39,7 @@ namespace hoot
/**
* Normalizes element phone numbers
*/
-class NormalizePhoneNumbersVisitor : public ElementVisitor, public Configurable,
- public OperationStatusInfo
+class NormalizePhoneNumbersVisitor : public ElementVisitor, public Configurable
{
public:
@@ -64,6 +62,8 @@ public:
" phone numbers";
}
+ virtual std::string getClassName() const { return className(); }
+
private:
friend class NormalizePhoneNumbersVisitorTest;