Skip to content

v0.2.55..v0.2.56 changeset NotCriterion.cpp

Garret Voltz edited this page Aug 14, 2020 · 3 revisions
diff --git a/hoot-core/src/main/cpp/hoot/core/criterion/NotCriterion.cpp b/hoot-core/src/main/cpp/hoot/core/criterion/NotCriterion.cpp
index 384bb7c..ca9d45d 100644
--- a/hoot-core/src/main/cpp/hoot/core/criterion/NotCriterion.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/criterion/NotCriterion.cpp
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 
 #include "NotCriterion.h"
@@ -35,20 +35,6 @@ namespace hoot
 
 HOOT_FACTORY_REGISTER(ElementCriterion, NotCriterion)
 
-NotCriterion::NotCriterion()
-{
-}
-
-NotCriterion::NotCriterion(ElementCriterion* c) :
-_child(c)
-{
-}
-
-NotCriterion::NotCriterion(ElementCriterionPtr c) :
-_child(c)
-{
-}
-
 void NotCriterion::addCriterion(const ElementCriterionPtr& e)
 {
   assert(_child.get() == 0);
Clone this wiki locally