diff options
author | Adam <Adam@anope.org> | 2010-07-24 03:32:27 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-24 03:32:27 -0400 |
commit | b218d52a31442214bf3bfdb5cc171fd5384f37c8 (patch) | |
tree | cdb88d19e8e881b9f8fd85dd318fbf17aaa8a6dd | |
parent | b899a5c26911600129384b883bb832dccdd8ac04 (diff) |
Removed MARK_DEPRECATED from the OnDatabaseExpire events
-rw-r--r-- | include/modules.h | 4 |
1 files 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 |