summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-10 18:31:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-10 18:31:11 +0000
commitd85ea7eac1580b52981578ea647d0da5b5694f54 (patch)
tree8e7e00e00103907f57e909b95b71c8530624c424 /src
parent7cca932bb5fa8ddb1b2653257f70eb3eec90568c (diff)
Remove commented out old methods that became templates
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4296 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/base.cpp35
1 files changed, 0 insertions, 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<std::string> &list)
{
for (ExtensibleStore::iterator u = Extension_Items.begin(); u != Extension_Items.end(); u++)