Skip to content

Commit

Permalink
OAK-11311: Remove usage of Guava ImmutableList - oak-blob-cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
reschke committed Dec 20, 2024
1 parent b7b344d commit 6b71d93
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import com.amazonaws.services.s3.transfer.TransferManager;

import org.apache.jackrabbit.guava.common.base.Strings;
import org.apache.jackrabbit.guava.common.collect.ImmutableList;
import org.apache.jackrabbit.guava.common.collect.Maps;
import org.apache.commons.io.IOUtils;
import org.apache.jackrabbit.core.data.DataStore;
Expand All @@ -66,7 +65,7 @@ public class S3DataStoreUtils extends DataStoreUtils {
protected static Class S3 = S3DataStore.class;

public static List<String> getFixtures() {
return ImmutableList.of(S3.getName());
return List.of(S3.getName());
}

public static boolean isS3DataStore() {
Expand Down

0 comments on commit 6b71d93

Please sign in to comment.