remove debug output
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 11 Jan 2007 13:36:58 +0000 (13:36 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 11 Jan 2007 13:36:58 +0000 (13:36 +0000)
lib/base/estring.cpp

index 487dceecceb630186a7ad5e47a6e8c1664efbe1e..429c261ff9ca96b57f6cf6bea7fbd6e9f06d77ad 100644 (file)
@@ -15,10 +15,7 @@ std::string buildShortName( const std::string &str )
        {
                unsigned int close = str.find(strclose, open);
                if ( close != std::string::npos )
-               {
                        tmp+=str.substr( open+2, close-(open+2) );
-                       eDebug("now %s", tmp.c_str());
-               }
        }
        return tmp.length() ? tmp : str;
 }