From fee310bd293be54237d61dab0d5fd23ca4bcd9db Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 27 Oct 2014 22:10:16 +0100 Subject: [PATCH] Remove useless comments --- src/libtomahawk/accounts/ResolverAccount.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/accounts/ResolverAccount.cpp b/src/libtomahawk/accounts/ResolverAccount.cpp index 36a21acc7..0d932edcc 100644 --- a/src/libtomahawk/accounts/ResolverAccount.cpp +++ b/src/libtomahawk/accounts/ResolverAccount.cpp @@ -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;