Skip to content

Commit 29c0e20

Browse files
committed
chore: replace unneeded ImmutableMap with standard Map
1 parent f507ded commit 29c0e20

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

server/src/main/java/org/eclipse/openvsx/storage/CdnServiceConfig.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
********************************************************************************/
1010
package org.eclipse.openvsx.storage;
1111

12-
import com.google.common.collect.ImmutableMap;
1312
import org.jspecify.annotations.Nullable;
1413
import org.springframework.boot.context.properties.ConfigurationProperties;
1514
import org.springframework.context.annotation.Configuration;
@@ -37,7 +36,7 @@
3736
@Configuration
3837
@ConfigurationProperties("ovsx.storage.cdn")
3938
public class CdnServiceConfig {
40-
private static final Map<String, String> STORAGE_TYPE_TO_SERVICE = ImmutableMap.of(
39+
private static final Map<String, String> STORAGE_TYPE_TO_SERVICE = Map.of(
4140
"aws", "aws",
4241
"azure-blob", "azure",
4342
"google-cloud", "gcp"

0 commit comments

Comments
 (0)