in case of short reads, re-align with blocksize
[enigma2.git] / 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;
 }