We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d53b7d commit 97dac4bCopy full SHA for 97dac4b
backend/core/src/main/java/org/sonarsource/sonarlint/core/spring/SonarLintSpringAppConfig.java
@@ -270,8 +270,8 @@ MonitoringInitializationParams provideMonitoringInitParams(InitializeParams para
270
}
271
272
@Bean
273
- SonarLintDatabaseInitParams provideStorageInitParams(InitializeParams params) {
274
- return new SonarLintDatabaseInitParams(params.getStorageRoot(), SonarLintDatabaseMode.FILE);
+ SonarLintDatabaseInitParams provideStorageInitParams(UserPaths userPaths) {
+ return new SonarLintDatabaseInitParams(userPaths.getStorageRoot(), SonarLintDatabaseMode.FILE);
275
276
277
private static HttpConfig adapt(HttpConfigurationDto dto, @Nullable Path sonarlintUserHome) {
0 commit comments