diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.cpp b/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.cpp
index 38287cb..39d789b 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.cpp
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2017 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#include "MeanAggregator.h"
@@ -35,10 +35,6 @@ namespace hoot
HOOT_FACTORY_REGISTER(ValueAggregator, MeanAggregator)
-MeanAggregator::MeanAggregator()
-{
-}
-
double MeanAggregator::aggregate(vector<double>& d) const
{
double sum = 0.0;