summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-12 16:52:46 +0000
committerSadie Powell <sadie@witchery.services>2025-03-12 16:52:46 +0000
commit9ec3f6abd6915848e9d3eb33a97ff213ea10aed2 (patch)
tree17a39dfe3e15f2b081616475991191a82cc9d26f /src
parente7b18609f6141b7ad4acb1e233aebd2fd48d775f (diff)
Refactor and redocument Serialize::Type.
Diffstat (limited to 'src')
-rw-r--r--src/serialize.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/serialize.cpp b/src/serialize.cpp
index e365ba01c..d820157b4 100644
--- a/src/serialize.cpp
+++ b/src/serialize.cpp
@@ -162,11 +162,6 @@ void Type::Check()
FOREACH_MOD(OnSerializeCheck, (this));
}
-time_t Type::GetTimestamp() const
-{
- return this->timestamp;
-}
-
void Type::UpdateTimestamp()
{
this->timestamp = Anope::CurTime;
@@ -179,13 +174,3 @@ Type *Serialize::Type::Find(const Anope::string &name)
return it->second;
return NULL;
}
-
-const std::vector<Anope::string> &Type::GetTypeOrder()
-{
- return TypeOrder;
-}
-
-const std::map<Anope::string, Serialize::Type *>& Type::GetTypes()
-{
- return Types;
-}