diff --git a/src/libtomahawk/resolvers/ScriptCommandQueue.cpp b/src/libtomahawk/resolvers/ScriptCommandQueue.cpp
index 06b9e19f8..06e4b8d0a 100644
--- a/src/libtomahawk/resolvers/ScriptCommandQueue.cpp
+++ b/src/libtomahawk/resolvers/ScriptCommandQueue.cpp
@@ -47,7 +47,6 @@ ScriptCommandQueue::nextCommand()
 
     connect( req.data(), SIGNAL( done() ),
              this, SLOT( onCommandDone() ) );
-
     connect( m_timer, SIGNAL( timeout() ),
              this, SLOT( onTimeout() ) );
 
diff --git a/src/libtomahawk/resolvers/ScriptCommand_AllTracks.cpp b/src/libtomahawk/resolvers/ScriptCommand_AllTracks.cpp
index c218fdc6b..9a4ee43fb 100644
--- a/src/libtomahawk/resolvers/ScriptCommand_AllTracks.cpp
+++ b/src/libtomahawk/resolvers/ScriptCommand_AllTracks.cpp
@@ -81,5 +81,4 @@ ScriptCommand_AllTracks::onResolverDone( const QList< Tomahawk::query_ptr >& q )
 {
     emit tracks( q );
     emit done();
-    //FIXME: find a way to delete this object when its job is done
 }