use of org.sonarsource.sonarlint.core.container.connected.update.IssueDownloaderImpl in project sonarlint-core by SonarSource.
the class PartialUpdater method create.
public static PartialUpdater create(StorageReader storageReader, StoragePaths storagePaths, ServerConfiguration serverConfig, IssueStoreReader issueStoreReader) {
SonarLintWsClient client = new SonarLintWsClient(serverConfig);
IssueStoreFactory issueStoreFactory = new IssueStoreFactory();
IssueDownloader downloader = new IssueDownloaderImpl(client);
ModuleListDownloader moduleListDownloader = new ModuleListDownloader(client);
return new PartialUpdater(issueStoreFactory, downloader, storageReader, storagePaths, issueStoreReader, moduleListDownloader);
}
Aggregations