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 f507ded commit 29c0e20Copy full SHA for 29c0e20
1 file changed
server/src/main/java/org/eclipse/openvsx/storage/CdnServiceConfig.java
@@ -9,7 +9,6 @@
9
********************************************************************************/
10
package org.eclipse.openvsx.storage;
11
12
-import com.google.common.collect.ImmutableMap;
13
import org.jspecify.annotations.Nullable;
14
import org.springframework.boot.context.properties.ConfigurationProperties;
15
import org.springframework.context.annotation.Configuration;
@@ -37,7 +36,7 @@
37
36
@Configuration
38
@ConfigurationProperties("ovsx.storage.cdn")
39
public class CdnServiceConfig {
40
- private static final Map<String, String> STORAGE_TYPE_TO_SERVICE = ImmutableMap.of(
+ private static final Map<String, String> STORAGE_TYPE_TO_SERVICE = Map.of(
41
"aws", "aws",
42
"azure-blob", "azure",
43
"google-cloud", "gcp"
0 commit comments