@@ -52,10 +52,10 @@ void CompatLogger::Start(bool runtimeCreated)
5252 Checkable::OnNewCheckResult.connect ([this ](const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, const MessageOrigin::Ptr&) {
5353 CheckResultHandler (checkable, cr);
5454 });
55- Checkable::OnNotificationSentToUser.connect ([this ](const Notification::Ptr& notification , const Checkable::Ptr& checkable,
55+ Checkable::OnNotificationSentToUser.connect ([this ](const Notification::Ptr&, const Checkable::Ptr& checkable,
5656 const User::Ptr& user, const NotificationType& type, const CheckResult::Ptr& cr, const String& author,
5757 const String& commentText, const String& commandName, const MessageOrigin::Ptr&) {
58- NotificationSentHandler (notification, checkable, user, type, cr, author, commentText, commandName);
58+ NotificationSentHandler (checkable, user, type, cr, author, commentText, commandName);
5959 });
6060
6161 Downtime::OnDowntimeTriggered.connect ([this ](const Downtime::Ptr& downtime) { TriggerDowntimeHandler (downtime); });
@@ -238,7 +238,7 @@ void CompatLogger::RemoveDowntimeHandler(const Downtime::Ptr& downtime)
238238/* *
239239 * @threadsafety Always.
240240 */
241- void CompatLogger::NotificationSentHandler (const Notification::Ptr& notification, const Checkable::Ptr& checkable,
241+ void CompatLogger::NotificationSentHandler (const Checkable::Ptr& checkable,
242242 const User::Ptr& user, NotificationType notification_type, CheckResult::Ptr const & cr,
243243 const String& author, const String& comment_text, const String& command_name)
244244{
0 commit comments