summaryrefslogtreecommitdiff
path: root/src/serialize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/serialize.cpp')
-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;
-}