package lombok.core.configuration; import java.util.Collection; import java.util.Collections; /* loaded from: com.discord-117113.apk:lombok/core/configuration/AllowHelper.SCL.lombok */ public final class AllowHelper { private static final Collection> ALLOWABLE = Collections.emptySet(); private AllowHelper() { } public static boolean isAllowable(ConfigurationKey configurationKey) { return ALLOWABLE.contains(configurationKey); } }