logic: sonargraph fixes
* updated sonargraph project icon * fixed Sonargraph SourceGroup to only return indexer commands for requested files * fixed refresh info generator to ignore non-existing files
This commit is contained in:
@@ -75,7 +75,13 @@ std::vector<std::shared_ptr<IndexerCommand>> SourceGroupJavaSonargraph::getIndex
|
||||
m_settings->getSonargraphProjectPathExpandedAndAbsolute(), getLanguage()
|
||||
))
|
||||
{
|
||||
indexerCommands = project->getIndexerCommands(m_settings, ApplicationSettings::getInstance());
|
||||
for (std::shared_ptr<IndexerCommand> indexerCommand : project->getIndexerCommands(m_settings, ApplicationSettings::getInstance()))
|
||||
{
|
||||
if (filesToIndex.find(indexerCommand->getSourceFilePath()) != filesToIndex.end())
|
||||
{
|
||||
indexerCommands.push_back(indexerCommand);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!indexerCommands.empty())
|
||||
|
||||
Reference in New Issue
Block a user