From b218d52a31442214bf3bfdb5cc171fd5384f37c8 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 24 Jul 2010 03:32:27 -0400 Subject: [PATCH] Removed MARK_DEPRECATED from the OnDatabaseExpire events --- include/modules.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/modules.h b/include/modules.h index d2f20dff4..c18c6b08d 100644 --- a/include/modules.h +++ b/include/modules.h @@ -559,11 +559,11 @@ class CoreExport Module * Note: Code that is in seperate expiry routines should just be done * when we save the DB, theres no need to have both */ - virtual void OnPreDatabaseExpire() MARK_DEPRECATED { } + virtual void OnPreDatabaseExpire() { } /** Called when the database expire routines are called */ - virtual void OnDatabaseExpire() MARK_DEPRECATED { } + virtual void OnDatabaseExpire() { } /** Called when the flatfile dbs are being written * @param Write A callback to the function used to insert a line into the database