1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-07 22:56:42 +02:00

Remove useless comments

This commit is contained in:
Uwe L. Korn
2014-10-27 22:10:16 +01:00
parent 1072e3cf2b
commit fee310bd29

View File

@@ -139,13 +139,13 @@ ResolverAccountFactory::createFromPath( const QString& path, const QString& fact
QDir dir( TomahawkUtils::extractScriptPayload( pathInfo.filePath(),
uniqueName,
MANUALRESOLVERS_DIR ) );
if ( !( dir.exists() && dir.isReadable() ) ) //decompression fubar
if ( !( dir.exists() && dir.isReadable() ) )
{
displayError( tr( "Resolver installation error: cannot open bundle." ) );
return nullptr;
}
if ( !dir.cd( "content" ) ) //more fubar
if ( !dir.cd( "content" ) )
{
displayError( tr( "Resolver installation error: incomplete bundle." ) );
return nullptr;