Skip to content

Commit

Permalink
eliminate usage of guava
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Nov 7, 2023
1 parent 394e593 commit 71215c5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import com.day.cq.wcm.api.components.ComponentContext;
import com.day.cq.wcm.api.components.EditConfig;
import com.day.cq.wcm.api.components.InplaceEditingConfig;
import com.google.common.collect.ImmutableSet;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import io.wcm.handler.commons.dom.HtmlElement;
Expand All @@ -60,7 +59,7 @@ public final class MediaMarkupBuilderUtil {
/**
* List of OOTB IPE editor types for images.
*/
public static final Set<String> DEFAULT_ALLOWED_IPE_EDITOR_TYPES = ImmutableSet.of("image");
public static final Set<String> DEFAULT_ALLOWED_IPE_EDITOR_TYPES = Set.of("image");

private MediaMarkupBuilderUtil() {
// static methods only
Expand Down

0 comments on commit 71215c5

Please sign in to comment.