]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/entitylib.h
various: drop dead code
[xonotic/netradiant.git] / libs / entitylib.h
index 87ac4fe50a6abac065984d44134316ecdf6bd06b..326f2c7c6c9939f273ef160531e5117f1046fd96 100644 (file)
@@ -419,18 +419,6 @@ private:
                }
                m_observerMutex = false;
        }
-       void forEachKeyValue_notifyInsert(){
-               for ( KeyValues::const_iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i )
-               {
-                       notifyInsert( ( *i ).first.c_str(), *( *i ).second );
-               }
-       }
-       void forEachKeyValue_notifyErase(){
-               for ( KeyValues::const_iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i )
-               {
-                       notifyErase( ( *i ).first.c_str(), *( *i ).second );
-               }
-       }
 
        void insert( const char* key, const KeyValuePtr& keyValue ){
                KeyValues::iterator i = m_keyValues.insert( KeyValues::value_type( key, keyValue ) );