From d85ea7eac1580b52981578ea647d0da5b5694f54 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 10 Jul 2006 18:31:11 +0000 Subject: Remove commented out old methods that became templates git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4296 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/base.cpp | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/src/base.cpp b/src/base.cpp index a7aa456f2..4612c4a59 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -29,22 +29,6 @@ const int inverted_bitfields[] = {~1,~2,~4,~8,~16,~32,~64,~128}; extern time_t TIME; -/* This is now a template in base.h - * - * bool Extensible::Extend(const std::string &key, char* p) - * { - * // only add an item if it doesnt already exist - * if (this->Extension_Items.find(key) == this->Extension_Items.end()) - * { - * this->Extension_Items[key] = p; - * log(DEBUG,"Extending object with item %s",key.c_str()); - * return true; - * } - * // item already exists, return false - * return false; - * } - */ - bool Extensible::Shrink(const std::string &key) { /* map::size_type map::erase( const key_type& key ); @@ -63,25 +47,6 @@ bool Extensible::Shrink(const std::string &key) } } -/*char* Extensible::GetExt(const std::string &key) -{ - * This was calling ExtensibleStore::find() twice, - * once to see if there was a value, and again to - * get that value if it was there. Now we store - * the iterator so we only have to search for it once. - * - ExtensibleStore::iterator iter = this->Extension_Items.find(key); - - if(iter != this->Extension_Items.end()) - { - return iter->second; - } - else - { - return NULL; - } -}*/ - void Extensible::GetExtList(std::deque &list) { for (ExtensibleStore::iterator u = Extension_Items.begin(); u != Extension_Items.end(); u++) -- cgit v1.2.3