From 44db1e423d74aa5b3ef2693e9eb8f521af722c21 Mon Sep 17 00:00:00 2001
From: Theodoros Katzalis <thodkatz@gmail.com>
Date: Sun, 17 Mar 2019 18:38:10 +0200
Subject: [PATCH] Remove a comment

---
 src/Helpers/TimeAndDate.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/Helpers/TimeAndDate.cpp b/src/Helpers/TimeAndDate.cpp
index f13e0af7..d231869f 100644
--- a/src/Helpers/TimeAndDate.cpp
+++ b/src/Helpers/TimeAndDate.cpp
@@ -14,8 +14,6 @@ TimeAndDate::TimeAndDate() {
 TimeAndDate::TimeAndDate(uint16_t year, uint8_t month, uint8_t day, uint8_t hour, uint8_t minute,
                          uint8_t second) {
 	// check if the parameters makes sense
-
-	// @todo change the condition of the assertion for the \p year
 	assertI(2019 <= year, ErrorHandler::InternalErrorType::InvalidDate);
 	assertI(1 <= month && month <= 12, ErrorHandler::InternalErrorType::InvalidDate);
 	assertI(1 <= day && month <= 31, ErrorHandler::InternalErrorType::InvalidDate);
-- 
GitLab