diff --git a/example/core/GenericFactory.cpp b/example/core/GenericFactory.cpp index a3a5d7e..3d85cc4 100644 --- a/example/core/GenericFactory.cpp +++ b/example/core/GenericFactory.cpp @@ -41,7 +41,7 @@ void ObjectFactory::produceGenericObjects() { new HealthTable(objects::HEALTH_TABLE); new InternalErrorReporter(objects::INTERNAL_ERROR_REPORTER); auto *stamperAndReader = new CdsShortTimeStamper(objects::TIME_STAMPER); - new VerificationReporter(nullptr); + new VerificationReporter(); auto *ccsdsDistrib = new CcsdsDistributor(apid::APID, objects::CCSDS_DISTRIBUTOR); new PusDistributor(apid::APID, objects::PUS_DISTRIBUTOR, ccsdsDistrib); new TmFunnel(*stamperAndReader, objects::TM_FUNNEL); @@ -149,8 +149,5 @@ void Factory::setStaticFrameworkObjectIds() { CommandingServiceBase::defaultPacketSource = objects::PUS_DISTRIBUTOR; CommandingServiceBase::defaultPacketDestination = objects::TM_FUNNEL; - VerificationReporter::DEFAULT_REPORTER = objects::TC_VERIFICATOR; VerificationReporter::DEFAULT_RECEIVER = objects::PUS_SERVICE_1_VERIFICATION; - - // TmPacketBase::timeStamperId = objects::TIME_STAMPER; }