118.6 - Beta (118106)
This commit is contained in:
parent
e29528c2d7
commit
f14ad9589f
425 changed files with 933 additions and 934 deletions
|
@ -10,8 +10,8 @@ android {
|
|||
applicationId 'com.discord'
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 118105
|
||||
versionName "118.5 - Beta"
|
||||
versionCode 118106
|
||||
versionName "118.6 - Beta"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="118105" android:versionName="118.5 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="118106" android:versionName="118.6 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30"/>
|
||||
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
||||
|
|
|
@ -37,7 +37,13 @@ public abstract class HasSubscriptionItems {
|
|||
|
||||
public final long getPremiumBasePlanId() {
|
||||
ModelSubscription.SubscriptionItem subscriptionItem = (ModelSubscription.SubscriptionItem) u.firstOrNull((List<? extends Object>) getItems());
|
||||
Long l = null;
|
||||
Long valueOf = subscriptionItem != null ? Long.valueOf(subscriptionItem.getPlanId()) : null;
|
||||
return SubscriptionPlanType.Companion.getBasePlanFromSubscriptionItems(getItems(), valueOf != null ? SubscriptionPlanType.Companion.from(valueOf.longValue()).getInterval() : SubscriptionInterval.MONTHLY).getPlanId();
|
||||
SubscriptionInterval interval = valueOf != null ? SubscriptionPlanType.Companion.from(valueOf.longValue()).getInterval() : SubscriptionInterval.MONTHLY;
|
||||
ModelSubscription.SubscriptionItem subscriptionItem2 = (ModelSubscription.SubscriptionItem) u.firstOrNull((List<? extends Object>) getItems());
|
||||
if (subscriptionItem2 != null) {
|
||||
l = Long.valueOf(subscriptionItem2.getPlanId());
|
||||
}
|
||||
return SubscriptionPlanType.Companion.getBasePlanFromSubscriptionItems(getItems(), interval, l != null ? SubscriptionPlanType.Companion.from(l.longValue()).getIntervalCount() : 1).getPlanId();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -637,7 +637,7 @@ public final class ModelSubscription extends HasSubscriptionItems {
|
|||
}
|
||||
|
||||
public final boolean isNonePlan() {
|
||||
return getPlanType() == SubscriptionPlanType.NONE_MONTH || getPlanType() == SubscriptionPlanType.NONE_YEAR;
|
||||
return getPlanType() == SubscriptionPlanType.NONE_MONTH || getPlanType() == SubscriptionPlanType.NONE_YEAR || getPlanType() == SubscriptionPlanType.NONE_3_MONTH || getPlanType() == SubscriptionPlanType.NONE_6_MONTH;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
|
|
|
@ -15,8 +15,14 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import kotlin.jvm.internal.DefaultConstructorMarker;
|
||||
/* JADX WARN: Init of enum NONE_3_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum NONE_6_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum NONE_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum NONE_YEAR can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_3_MONTH_TIER_2 can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_6_MONTH_TIER_2 can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_GUILD_3_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_GUILD_6_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_GUILD_MONTH can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_GUILD_YEAR can be incorrect */
|
||||
/* JADX WARN: Init of enum PREMIUM_MONTH_LEGACY can be incorrect */
|
||||
|
@ -28,16 +34,22 @@ import kotlin.jvm.internal.DefaultConstructorMarker;
|
|||
/* compiled from: SubscriptionPlanType.kt */
|
||||
/* loaded from: classes.dex */
|
||||
public enum SubscriptionPlanType {
|
||||
NONE_MONTH(0, r11, "none_month", 628379151761408000L, r12),
|
||||
NONE_YEAR(0, r14, "none_year", 628381571568631808L, r12),
|
||||
PREMIUM_MONTH_LEGACY(499, r11, "premium_month", 511651856145973248L, r15),
|
||||
PREMIUM_YEAR_LEGACY(4999, r14, "premium_year", 511651860671627264L, r15),
|
||||
PREMIUM_MONTH_TIER_1(499, r11, "premium_month_tier_1", 511651871736201216L, r18),
|
||||
PREMIUM_YEAR_TIER_1(4999, r14, "premium_year_tier_1", 511651876987469824L, r18),
|
||||
PREMIUM_MONTH_TIER_2(RoomDatabase.MAX_BIND_PARAMETER_CNT, r11, "premium_month_tier_2", 511651880837840896L, r15),
|
||||
PREMIUM_YEAR_TIER_2(9999, r14, "premium_year_tier_2", 511651885459963904L, r15),
|
||||
PREMIUM_GUILD_MONTH(499, r11, null, 590665532894740483L, null),
|
||||
PREMIUM_GUILD_YEAR(4999, r14, null, 590665538238152709L, null);
|
||||
NONE_MONTH(0, r12, 1, "none_month", 628379151761408000L, r13),
|
||||
NONE_3_MONTH(0, r12, 3, "none_3_month", 944265614527037440L, r13),
|
||||
NONE_6_MONTH(0, r12, 6, "none_6_month", 944265636643602432L, r13),
|
||||
NONE_YEAR(0, r26, 1, "none_year", 628381571568631808L, r13),
|
||||
PREMIUM_MONTH_LEGACY(499, r12, 1, "premium_month", 511651856145973248L, r27),
|
||||
PREMIUM_YEAR_LEGACY(4999, r26, 1, "premium_year", 511651860671627264L, r27),
|
||||
PREMIUM_MONTH_TIER_1(499, r12, 1, "premium_month_tier_1", 511651871736201216L, r25),
|
||||
PREMIUM_YEAR_TIER_1(4999, r26, 1, "premium_year_tier_1", 511651876987469824L, r25),
|
||||
PREMIUM_MONTH_TIER_2(RoomDatabase.MAX_BIND_PARAMETER_CNT, r12, 1, "premium_month_tier_2", 511651880837840896L, r27),
|
||||
PREMIUM_3_MONTH_TIER_2(2849, r12, 3, "premium_3_month_tier_2", 642251038925127690L, r27),
|
||||
PREMIUM_6_MONTH_TIER_2(5499, r12, 6, "premium_6_month_tier_2", 944037208325619722L, r27),
|
||||
PREMIUM_YEAR_TIER_2(9999, r26, 1, "premium_year_tier_2", 511651885459963904L, r27),
|
||||
PREMIUM_GUILD_MONTH(499, r12, 1, null, 590665532894740483L, null),
|
||||
PREMIUM_GUILD_3_MONTH(1427, r12, 3, null, 944037355453415424L, null),
|
||||
PREMIUM_GUILD_6_MONTH(2750, r12, 6, null, 944037391444738048L, null),
|
||||
PREMIUM_GUILD_YEAR(4999, r26, 1, null, 590665538238152709L, null);
|
||||
|
||||
public static final Companion Companion = new Companion(null);
|
||||
private static final Set<SubscriptionPlanType> LEGACY_PLANS;
|
||||
|
@ -46,6 +58,7 @@ public enum SubscriptionPlanType {
|
|||
private static final Set<SubscriptionPlanType> TIER_1_PLANS;
|
||||
private static final Set<SubscriptionPlanType> TIER_2_PLANS;
|
||||
private final SubscriptionInterval interval;
|
||||
private final int intervalCount;
|
||||
private final long planId;
|
||||
private final String planTypeString;
|
||||
private final PremiumTier premiumTier;
|
||||
|
@ -75,10 +88,10 @@ public enum SubscriptionPlanType {
|
|||
this();
|
||||
}
|
||||
|
||||
private final SubscriptionPlanType getNonePlanForIntervalType(SubscriptionInterval subscriptionInterval) {
|
||||
private final SubscriptionPlanType getNonePlanForIntervalType(SubscriptionInterval subscriptionInterval, int i) {
|
||||
int ordinal = subscriptionInterval.ordinal();
|
||||
if (ordinal == 0) {
|
||||
return SubscriptionPlanType.NONE_MONTH;
|
||||
return i != 3 ? i != 6 ? SubscriptionPlanType.NONE_MONTH : SubscriptionPlanType.NONE_6_MONTH : SubscriptionPlanType.NONE_3_MONTH;
|
||||
}
|
||||
if (ordinal == 1) {
|
||||
return SubscriptionPlanType.NONE_YEAR;
|
||||
|
@ -91,7 +104,7 @@ public enum SubscriptionPlanType {
|
|||
SubscriptionPlanType[] values = SubscriptionPlanType.values();
|
||||
int i = 0;
|
||||
while (true) {
|
||||
if (i >= 10) {
|
||||
if (i >= 16) {
|
||||
subscriptionPlanType = null;
|
||||
break;
|
||||
}
|
||||
|
@ -113,7 +126,7 @@ public enum SubscriptionPlanType {
|
|||
SubscriptionPlanType[] values = SubscriptionPlanType.values();
|
||||
int i = 0;
|
||||
while (true) {
|
||||
if (i >= 10) {
|
||||
if (i >= 16) {
|
||||
subscriptionPlanType = null;
|
||||
break;
|
||||
}
|
||||
|
@ -129,7 +142,7 @@ public enum SubscriptionPlanType {
|
|||
throw new IllegalArgumentException(a.v("unsupported planTypeString: ", str));
|
||||
}
|
||||
|
||||
public final SubscriptionPlanType getBasePlanFromSubscriptionItems(List<ModelSubscription.SubscriptionItem> list, SubscriptionInterval subscriptionInterval) {
|
||||
public final SubscriptionPlanType getBasePlanFromSubscriptionItems(List<ModelSubscription.SubscriptionItem> list, SubscriptionInterval subscriptionInterval, int i) {
|
||||
Object obj;
|
||||
boolean z2;
|
||||
SubscriptionInterval interval;
|
||||
|
@ -162,7 +175,7 @@ public enum SubscriptionPlanType {
|
|||
}
|
||||
}
|
||||
SubscriptionPlanType subscriptionPlanType2 = (SubscriptionPlanType) obj;
|
||||
return subscriptionPlanType2 != null ? subscriptionPlanType2 : getNonePlanForIntervalType(subscriptionInterval);
|
||||
return subscriptionPlanType2 != null ? subscriptionPlanType2 : getNonePlanForIntervalType(subscriptionInterval, i);
|
||||
}
|
||||
|
||||
public final Set<SubscriptionPlanType> getLEGACY_PLANS() {
|
||||
|
@ -189,22 +202,25 @@ public enum SubscriptionPlanType {
|
|||
SubscriptionPlanType subscriptionPlanType3 = PREMIUM_MONTH_TIER_1;
|
||||
SubscriptionPlanType subscriptionPlanType4 = PREMIUM_YEAR_TIER_1;
|
||||
SubscriptionPlanType subscriptionPlanType5 = PREMIUM_MONTH_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType6 = PREMIUM_YEAR_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType7 = PREMIUM_GUILD_MONTH;
|
||||
SubscriptionPlanType subscriptionPlanType8 = PREMIUM_GUILD_YEAR;
|
||||
SubscriptionPlanType subscriptionPlanType6 = PREMIUM_3_MONTH_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType7 = PREMIUM_6_MONTH_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType8 = PREMIUM_YEAR_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType9 = PREMIUM_GUILD_MONTH;
|
||||
SubscriptionPlanType subscriptionPlanType10 = PREMIUM_GUILD_YEAR;
|
||||
Set<SubscriptionPlanType> of = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType4, subscriptionPlanType3});
|
||||
TIER_1_PLANS = of;
|
||||
Set<SubscriptionPlanType> of2 = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType2, subscriptionPlanType});
|
||||
LEGACY_PLANS = of2;
|
||||
Set<SubscriptionPlanType> plus = o0.plus(n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType6, subscriptionPlanType5}), (Iterable) of2);
|
||||
Set<SubscriptionPlanType> plus = o0.plus(n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType5, subscriptionPlanType6, subscriptionPlanType7, subscriptionPlanType8}), (Iterable) of2);
|
||||
TIER_2_PLANS = plus;
|
||||
PREMIUM_PLANS = o0.plus((Set) of, (Iterable) plus);
|
||||
PREMIUM_GUILD_PLANS = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType7, subscriptionPlanType8});
|
||||
PREMIUM_GUILD_PLANS = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType9, subscriptionPlanType6, subscriptionPlanType7, subscriptionPlanType10});
|
||||
}
|
||||
|
||||
SubscriptionPlanType(int i, SubscriptionInterval subscriptionInterval, String str, long j, PremiumTier premiumTier) {
|
||||
SubscriptionPlanType(int i, SubscriptionInterval subscriptionInterval, int i2, String str, long j, PremiumTier premiumTier) {
|
||||
this.price = i;
|
||||
this.interval = subscriptionInterval;
|
||||
this.intervalCount = i2;
|
||||
this.planTypeString = str;
|
||||
this.planId = j;
|
||||
this.premiumTier = premiumTier;
|
||||
|
@ -226,6 +242,10 @@ public enum SubscriptionPlanType {
|
|||
return this.interval;
|
||||
}
|
||||
|
||||
public final int getIntervalCount() {
|
||||
return this.intervalCount;
|
||||
}
|
||||
|
||||
public final long getPlanId() {
|
||||
return this.planId;
|
||||
}
|
||||
|
|
|
@ -5,34 +5,21 @@ import android.content.Context;
|
|||
import androidx.annotation.DrawableRes;
|
||||
import com.discord.R;
|
||||
import com.discord.models.domain.ModelPaymentSource;
|
||||
import com.discord.models.domain.premium.SubscriptionPlanType;
|
||||
import com.discord.utilities.locale.LocaleManager;
|
||||
import d0.o;
|
||||
import d0.t.h0;
|
||||
import d0.t.m0;
|
||||
import d0.t.n0;
|
||||
import d0.t.o0;
|
||||
import d0.z.d.m;
|
||||
import java.text.NumberFormat;
|
||||
import java.util.Calendar;
|
||||
import java.util.Currency;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
/* compiled from: PremiumUtils.kt */
|
||||
/* loaded from: classes.dex */
|
||||
public final class PremiumUtilsKt {
|
||||
private static final Set<SubscriptionPlanType> ALL_PAID_PLANS;
|
||||
public static final int GRACE_PERIOD_LONG = 7;
|
||||
public static final int GRACE_PERIOD_SHORT = 3;
|
||||
private static final Date GRANDFATHERED_MONTHLY_END_DATE;
|
||||
private static final Date GRANDFATHERED_YEARLY_END_DATE;
|
||||
public static final int MAX_ACCOUNT_HOLD_DAYS = 30;
|
||||
private static final Set<SubscriptionPlanType> NONE_PLANS;
|
||||
private static final Set<SubscriptionPlanType> TIER_1_PLANS;
|
||||
private static final Set<SubscriptionPlanType> TIER_2_PLANS;
|
||||
private static final Map<SubscriptionPlanType, Set<SubscriptionPlanType>> UPGRADE_ELIGIBILITY;
|
||||
|
||||
static {
|
||||
Calendar instance = Calendar.getInstance();
|
||||
|
@ -47,21 +34,6 @@ public final class PremiumUtilsKt {
|
|||
Date time2 = instance2.getTime();
|
||||
m.checkNotNullExpressionValue(time2, "Calendar.getInstance().a… { set(2021, 0, 1) }.time");
|
||||
GRANDFATHERED_YEARLY_END_DATE = time2;
|
||||
SubscriptionPlanType subscriptionPlanType = SubscriptionPlanType.NONE_MONTH;
|
||||
SubscriptionPlanType subscriptionPlanType2 = SubscriptionPlanType.NONE_YEAR;
|
||||
Set<SubscriptionPlanType> of = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType, subscriptionPlanType2});
|
||||
NONE_PLANS = of;
|
||||
SubscriptionPlanType subscriptionPlanType3 = SubscriptionPlanType.PREMIUM_MONTH_TIER_1;
|
||||
SubscriptionPlanType subscriptionPlanType4 = SubscriptionPlanType.PREMIUM_YEAR_TIER_1;
|
||||
Set<SubscriptionPlanType> of2 = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType3, subscriptionPlanType4});
|
||||
TIER_1_PLANS = of2;
|
||||
SubscriptionPlanType subscriptionPlanType5 = SubscriptionPlanType.PREMIUM_MONTH_TIER_2;
|
||||
SubscriptionPlanType subscriptionPlanType6 = SubscriptionPlanType.PREMIUM_YEAR_TIER_2;
|
||||
Set<SubscriptionPlanType> of3 = n0.setOf((Object[]) new SubscriptionPlanType[]{subscriptionPlanType5, subscriptionPlanType6});
|
||||
TIER_2_PLANS = of3;
|
||||
Set<SubscriptionPlanType> plus = o0.plus((Set) of2, (Iterable) of3);
|
||||
ALL_PAID_PLANS = plus;
|
||||
UPGRADE_ELIGIBILITY = h0.mapOf(o.to(null, o0.plus((Set) of, (Iterable) plus)), o.to(subscriptionPlanType, o0.plus(m0.setOf(subscriptionPlanType2), (Iterable) plus)), o.to(subscriptionPlanType2, plus), o.to(SubscriptionPlanType.PREMIUM_MONTH_LEGACY, o0.plus(m0.setOf(subscriptionPlanType4), (Iterable) of3)), o.to(SubscriptionPlanType.PREMIUM_YEAR_LEGACY, m0.setOf(subscriptionPlanType6)), o.to(subscriptionPlanType3, o0.plus(m0.setOf(subscriptionPlanType4), (Iterable) of3)), o.to(subscriptionPlanType4, m0.setOf(subscriptionPlanType6)), o.to(subscriptionPlanType5, m0.setOf(subscriptionPlanType6)), o.to(subscriptionPlanType6, n0.emptySet()));
|
||||
}
|
||||
|
||||
public static final CharSequence getFormattedPriceUsd(int i, Context context) {
|
||||
|
@ -123,8 +95,4 @@ public final class PremiumUtilsKt {
|
|||
return R.drawable.ic_creditcard_generic;
|
||||
}
|
||||
}
|
||||
|
||||
public static final Map<SubscriptionPlanType, Set<SubscriptionPlanType>> getUPGRADE_ELIGIBILITY() {
|
||||
return UPGRADE_ELIGIBILITY;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -140,7 +140,7 @@ public final class GuildBoostUtils {
|
|||
}
|
||||
obj = it.next();
|
||||
ModelSubscription.SubscriptionAdditionalPlan subscriptionAdditionalPlan = (ModelSubscription.SubscriptionAdditionalPlan) obj;
|
||||
if (subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId() || subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId()) {
|
||||
if (subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId() || subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_3_MONTH.getPlanId() || subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_6_MONTH.getPlanId() || subscriptionAdditionalPlan.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId()) {
|
||||
z2 = true;
|
||||
continue;
|
||||
} else {
|
||||
|
@ -161,7 +161,7 @@ public final class GuildBoostUtils {
|
|||
ArrayList arrayList = new ArrayList();
|
||||
for (Object obj2 : premiumAdditionalPlans) {
|
||||
ModelSubscription.SubscriptionAdditionalPlan subscriptionAdditionalPlan3 = (ModelSubscription.SubscriptionAdditionalPlan) obj2;
|
||||
if ((subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId() || subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId()) ? false : true) {
|
||||
if ((subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId() || subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_3_MONTH.getPlanId() || subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_6_MONTH.getPlanId() || subscriptionAdditionalPlan3.getPlanId() == SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId()) ? false : true) {
|
||||
arrayList.add(obj2);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -266,7 +266,7 @@ public final class PremiumUtils {
|
|||
|
||||
public final int getGuildBoostCountFromSubscription(ModelSubscription modelSubscription) {
|
||||
m.checkNotNullParameter(modelSubscription, "$this$getGuildBoostCountFromSubscription");
|
||||
return (modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_MONTH_TIER_2.getPlanId() || modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_YEAR_TIER_2.getPlanId()) ? 2 : 0;
|
||||
return (modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_MONTH_TIER_2.getPlanId() || modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_YEAR_TIER_2.getPlanId() || modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_3_MONTH_TIER_2.getPlanId() || modelSubscription.getPremiumBasePlanId() == SubscriptionPlanType.PREMIUM_6_MONTH_TIER_2.getPlanId()) ? 2 : 0;
|
||||
}
|
||||
|
||||
public final int getGuildEmojiMaxCount(int i, boolean z2) {
|
||||
|
|
|
@ -183,13 +183,17 @@ public final class ActiveSubscriptionView extends FrameLayout {
|
|||
}
|
||||
}
|
||||
int ordinal = modelSubscription.getPlanType().ordinal();
|
||||
if (!(ordinal == 2 || ordinal == 3)) {
|
||||
if (!(ordinal == 4 || ordinal == 5)) {
|
||||
switch (ordinal) {
|
||||
case 6:
|
||||
case 7:
|
||||
break;
|
||||
case 8:
|
||||
case 9:
|
||||
case 10:
|
||||
case 11:
|
||||
break;
|
||||
case 12:
|
||||
case 13:
|
||||
case 14:
|
||||
case 15:
|
||||
return ActiveSubscriptionType.PREMIUM_GUILD;
|
||||
default:
|
||||
return ActiveSubscriptionType.PREMIUM_CLASSIC;
|
||||
|
|
|
@ -347,7 +347,7 @@ public final class WidgetSettings extends AppFragment implements OnTabSelectedLi
|
|||
TextView textView = binding.f;
|
||||
m.checkNotNullExpressionValue(textView, "appInfoHeader");
|
||||
String string = getString(R.string.app_information);
|
||||
textView.setText(string + " - 118.5 - Beta (118105)");
|
||||
textView.setText(string + " - 118.6 - Beta (118106)");
|
||||
binding.B.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
|
||||
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
|
||||
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);
|
||||
|
|
|
@ -864,7 +864,7 @@ public final class SettingsPremiumViewModel extends AppViewModel<ViewState> {
|
|||
}
|
||||
}
|
||||
ModelSubscription modelSubscription = (ModelSubscription) obj2;
|
||||
boolean hasAnyOfPlans = modelSubscription != null ? modelSubscription.hasAnyOfPlans(n0.setOf((Object[]) new Long[]{Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId()), Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId())})) : false;
|
||||
boolean hasAnyOfPlans = modelSubscription != null ? modelSubscription.hasAnyOfPlans(n0.setOf((Object[]) new Long[]{Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_MONTH.getPlanId()), Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_3_MONTH.getPlanId()), Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_6_MONTH.getPlanId()), Long.valueOf(SubscriptionPlanType.PREMIUM_GUILD_YEAR.getPlanId())})) : false;
|
||||
List<ModelPaymentSource> paymentSources = ((StorePaymentSources.PaymentSourcesState.Loaded) paymentSourcesState).getPaymentSources();
|
||||
List<ModelEntitlement> list = ((StoreEntitlements.State.Loaded) entitlementState).getOwnedEntitlements().get(521842831262875670L);
|
||||
if (list == null) {
|
||||
|
|
|
@ -261,7 +261,7 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
iArr[SubscriptionInterval.YEARLY.ordinal()] = 1;
|
||||
iArr[SubscriptionInterval.MONTHLY.ordinal()] = 2;
|
||||
SubscriptionPlanType.values();
|
||||
int[] iArr2 = new int[10];
|
||||
int[] iArr2 = new int[16];
|
||||
$EnumSwitchMapping$1 = iArr2;
|
||||
iArr2[SubscriptionPlanType.PREMIUM_MONTH_LEGACY.ordinal()] = 1;
|
||||
iArr2[SubscriptionPlanType.PREMIUM_YEAR_LEGACY.ordinal()] = 2;
|
||||
|
@ -285,12 +285,14 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
iArr5[status.ordinal()] = 3;
|
||||
iArr5[status2.ordinal()] = 4;
|
||||
SubscriptionPlanType.values();
|
||||
int[] iArr6 = new int[10];
|
||||
int[] iArr6 = new int[16];
|
||||
$EnumSwitchMapping$5 = iArr6;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_MONTH_TIER_1.ordinal()] = 1;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_YEAR_TIER_1.ordinal()] = 2;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_MONTH_TIER_2.ordinal()] = 3;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_YEAR_TIER_2.ordinal()] = 4;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_3_MONTH_TIER_2.ordinal()] = 4;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_6_MONTH_TIER_2.ordinal()] = 5;
|
||||
iArr6[SubscriptionPlanType.PREMIUM_YEAR_TIER_2.ordinal()] = 6;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -377,12 +379,12 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
getBinding().f2606b.f95b.a(SubscriptionPlanType.PREMIUM_MONTH_TIER_2.getPlanId(), i3, modelSubscription);
|
||||
}
|
||||
|
||||
/* JADX WARN: Removed duplicated region for block: B:200:0x00b3 A[EDGE_INSN: B:200:0x00b3->B:50:0x00b3 ?: BREAK , SYNTHETIC] */
|
||||
/* JADX WARN: Removed duplicated region for block: B:102:0x0193 */
|
||||
/* JADX WARN: Removed duplicated region for block: B:103:0x0197 */
|
||||
/* JADX WARN: Removed duplicated region for block: B:208:0x00b3 A[EDGE_INSN: B:208:0x00b3->B:50:0x00b3 ?: BREAK , SYNTHETIC] */
|
||||
/* JADX WARN: Removed duplicated region for block: B:72:0x0102 */
|
||||
/* JADX WARN: Removed duplicated region for block: B:73:0x0107 */
|
||||
/* JADX WARN: Removed duplicated region for block: B:82:0x0128 */
|
||||
/* JADX WARN: Removed duplicated region for block: B:94:0x016b */
|
||||
/* JADX WARN: Removed duplicated region for block: B:95:0x016f */
|
||||
/*
|
||||
Code decompiled incorrectly, please refer to instructions dump.
|
||||
*/
|
||||
|
@ -400,6 +402,8 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
Function0<Unit> function0;
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations;
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations2;
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations3;
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations4;
|
||||
boolean z5;
|
||||
String paymentGatewayPlanId;
|
||||
ModelSubscription premiumSubscription = loaded.getPremiumSubscription();
|
||||
|
@ -429,8 +433,8 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
ModelInvoiceItem modelInvoiceItem2 = (ModelInvoiceItem) obj2;
|
||||
if (modelInvoiceItem2.getSubscriptionPlanId() != premiumSubscription.getPremiumBasePlanId()) {
|
||||
long subscriptionPlanId = modelInvoiceItem2.getSubscriptionPlanId();
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations3 = premiumSubscription.getRenewalMutations();
|
||||
if (renewalMutations3 == null || subscriptionPlanId != renewalMutations3.getPremiumBasePlanId()) {
|
||||
ModelSubscription.SubscriptionRenewalMutations renewalMutations5 = premiumSubscription.getRenewalMutations();
|
||||
if (renewalMutations5 == null || subscriptionPlanId != renewalMutations5.getPremiumBasePlanId()) {
|
||||
z5 = false;
|
||||
continue;
|
||||
if (z5) {
|
||||
|
@ -455,14 +459,14 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
function0 = premiumSubscriptionViewCallbacks.getManageBillingCallback();
|
||||
} else if (premiumSubscription.getRenewalMutations() != null) {
|
||||
function0 = null;
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || ((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId())));
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || (((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId()) || (((renewalMutations3 = premiumSubscription.getRenewalMutations()) != null && renewalMutations3.getPremiumBasePlanId() == SubscriptionPlanType.NONE_3_MONTH.getPlanId()) || ((renewalMutations4 = premiumSubscription.getRenewalMutations()) != null && renewalMutations4.getPremiumBasePlanId() == SubscriptionPlanType.NONE_6_MONTH.getPlanId())))));
|
||||
} else {
|
||||
function0 = premiumSubscription.getStatus().isCanceled() ? premiumSubscriptionViewCallbacks.getRestoreCallback() : premiumSubscriptionViewCallbacks.getManagePlanCallback();
|
||||
}
|
||||
if (!isGoogleSubscription) {
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || ((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId())));
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || (((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId()) || (((renewalMutations3 = premiumSubscription.getRenewalMutations()) != null && renewalMutations3.getPremiumBasePlanId() == SubscriptionPlanType.NONE_3_MONTH.getPlanId()) || ((renewalMutations4 = premiumSubscription.getRenewalMutations()) != null && renewalMutations4.getPremiumBasePlanId() == SubscriptionPlanType.NONE_6_MONTH.getPlanId())))));
|
||||
}
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || ((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId())));
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || (((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId()) || (((renewalMutations3 = premiumSubscription.getRenewalMutations()) != null && renewalMutations3.getPremiumBasePlanId() == SubscriptionPlanType.NONE_3_MONTH.getPlanId()) || ((renewalMutations4 = premiumSubscription.getRenewalMutations()) != null && renewalMutations4.getPremiumBasePlanId() == SubscriptionPlanType.NONE_6_MONTH.getPlanId())))));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -470,7 +474,7 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
Companion.SubscriptionViewCallbacks premiumSubscriptionViewCallbacks2 = getPremiumSubscriptionViewCallbacks(premiumSubscription, z4, loaded.getPurchases());
|
||||
if (!premiumSubscription.getStatus().isAccountHold()) {
|
||||
}
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks2.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks2.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || ((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId())));
|
||||
getBinding().f.a(ActiveSubscriptionView.b(premiumSubscription), premiumSubscription.getStatus(), premiumSubscription.getTrialId() == null, priceText, loaded.isBusy(), premiumSubscriptionCount, function0, premiumSubscriptionViewCallbacks2.getManageGuildBoostCallback(), premiumSubscriptionViewCallbacks2.getCancelCallback(), !isGoogleSubscription && (((renewalMutations = premiumSubscription.getRenewalMutations()) != null && renewalMutations.getPremiumBasePlanId() == SubscriptionPlanType.NONE_MONTH.getPlanId()) || (((renewalMutations2 = premiumSubscription.getRenewalMutations()) != null && renewalMutations2.getPremiumBasePlanId() == SubscriptionPlanType.NONE_YEAR.getPlanId()) || (((renewalMutations3 = premiumSubscription.getRenewalMutations()) != null && renewalMutations3.getPremiumBasePlanId() == SubscriptionPlanType.NONE_3_MONTH.getPlanId()) || ((renewalMutations4 = premiumSubscription.getRenewalMutations()) != null && renewalMutations4.getPremiumBasePlanId() == SubscriptionPlanType.NONE_6_MONTH.getPlanId())))));
|
||||
}
|
||||
ModelInvoicePreview currentInvoicePreview2 = loaded.getCurrentInvoicePreview();
|
||||
if (currentInvoicePreview2 == null || (invoiceItems = currentInvoicePreview2.getInvoiceItems()) == null) {
|
||||
|
@ -586,9 +590,9 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
SubscriptionPlanType planType = modelSubscription != null ? modelSubscription.getPlanType() : null;
|
||||
if (planType != null) {
|
||||
int ordinal = planType.ordinal();
|
||||
if (ordinal == 2) {
|
||||
if (ordinal == 4) {
|
||||
charSequence = b.k(this, R.string.premium_grandfathered_monthly, new Object[]{DateFormat.getMediumDateFormat(requireContext()).format(PremiumUtilsKt.getGRANDFATHERED_MONTHLY_END_DATE())}, null, 4);
|
||||
} else if (ordinal == 3) {
|
||||
} else if (ordinal == 5) {
|
||||
charSequence = b.k(this, R.string.premium_grandfathered_yearly, new Object[]{DateFormat.getMediumDateFormat(requireContext()).format(PremiumUtilsKt.getGRANDFATHERED_YEARLY_END_DATE())}, null, 4);
|
||||
}
|
||||
}
|
||||
|
@ -789,7 +793,7 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
SubscriptionPlanType[] values = SubscriptionPlanType.values();
|
||||
int i2 = 0;
|
||||
while (true) {
|
||||
if (i2 >= 10) {
|
||||
if (i2 >= 16) {
|
||||
subscriptionPlanType2 = null;
|
||||
break;
|
||||
}
|
||||
|
@ -819,7 +823,7 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
SubscriptionPlanType[] values2 = SubscriptionPlanType.values();
|
||||
int i3 = 0;
|
||||
while (true) {
|
||||
if (i3 >= 10) {
|
||||
if (i3 >= 16) {
|
||||
subscriptionPlanType = null;
|
||||
break;
|
||||
}
|
||||
|
@ -898,18 +902,19 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
|
||||
private final CharSequence getPlanString(SubscriptionPlanType subscriptionPlanType) {
|
||||
if (subscriptionPlanType != null) {
|
||||
int ordinal = subscriptionPlanType.ordinal();
|
||||
if (ordinal == 4) {
|
||||
return b.k(this, R.string.premium_plan_month_tier_1, new Object[0], null, 4);
|
||||
}
|
||||
if (ordinal == 5) {
|
||||
return b.k(this, R.string.premium_plan_year_tier_1, new Object[0], null, 4);
|
||||
}
|
||||
if (ordinal == 6) {
|
||||
return b.k(this, R.string.premium_plan_month_tier_2, new Object[0], null, 4);
|
||||
}
|
||||
if (ordinal == 7) {
|
||||
return b.k(this, R.string.premium_plan_year_tier_2, new Object[0], null, 4);
|
||||
switch (subscriptionPlanType.ordinal()) {
|
||||
case 6:
|
||||
return b.k(this, R.string.premium_plan_month_tier_1, new Object[0], null, 4);
|
||||
case 7:
|
||||
return b.k(this, R.string.premium_plan_year_tier_1, new Object[0], null, 4);
|
||||
case 8:
|
||||
return b.k(this, R.string.premium_plan_month_tier_2, new Object[0], null, 4);
|
||||
case 9:
|
||||
return b.k(this, R.string.premium_plan_3_month_tier_2, new Object[0], null, 4);
|
||||
case 10:
|
||||
return b.k(this, R.string.premium_plan_6_month_tier_2, new Object[0], null, 4);
|
||||
case 11:
|
||||
return b.k(this, R.string.premium_plan_year_tier_2, new Object[0], null, 4);
|
||||
}
|
||||
}
|
||||
return "";
|
||||
|
@ -943,14 +948,27 @@ public final class WidgetSettingsPremium extends AppFragment {
|
|||
if (modelInvoiceItem == null || (subscriptionPlanType = SubscriptionPlanType.Companion.from(modelInvoiceItem.getSubscriptionPlanId())) == null) {
|
||||
subscriptionPlanType = modelSubscription != null ? modelSubscription.getPlanType() : null;
|
||||
}
|
||||
int i = subscriptionPlanType != null ? subscriptionPlanType.isMonthlyInterval() : false ? R.string.billing_price_per_month : R.string.billing_price_per_year;
|
||||
boolean isMonthlyInterval = subscriptionPlanType != null ? subscriptionPlanType.isMonthlyInterval() : false;
|
||||
int intervalCount = subscriptionPlanType != null ? subscriptionPlanType.getIntervalCount() : 1;
|
||||
int i = R.string.billing_price_per_multi_months;
|
||||
if (!isMonthlyInterval) {
|
||||
i = R.string.billing_price_per_year;
|
||||
} else if (!(intervalCount == 3 || intervalCount == 6)) {
|
||||
i = R.string.billing_price_per_month;
|
||||
}
|
||||
String b2 = (modelSubscription == null || (skuDetails = (SkuDetails) map.get(modelSubscription.getPaymentGatewayPlanId())) == null) ? null : skuDetails.b();
|
||||
if (isGoogleSubscription && b2 != null) {
|
||||
return b.k(this, i, new Object[]{b2}, null, 4);
|
||||
return intervalCount == 1 ? b.k(this, i, new Object[]{b2}, null, 4) : b.k(this, i, new Object[]{b2, Integer.valueOf(intervalCount)}, null, 4);
|
||||
}
|
||||
Object[] objArr = new Object[1];
|
||||
objArr[0] = PremiumUtilsKt.getFormattedPriceUsd(modelInvoiceItem != null ? modelInvoiceItem.getAmount() : 0, requireContext());
|
||||
return b.k(this, i, objArr, null, 4);
|
||||
if (intervalCount == 1) {
|
||||
Object[] objArr = new Object[1];
|
||||
objArr[0] = PremiumUtilsKt.getFormattedPriceUsd(modelInvoiceItem != null ? modelInvoiceItem.getAmount() : 0, requireContext());
|
||||
return b.k(this, i, objArr, null, 4);
|
||||
}
|
||||
Object[] objArr2 = new Object[2];
|
||||
objArr2[0] = PremiumUtilsKt.getFormattedPriceUsd(modelInvoiceItem != null ? modelInvoiceItem.getAmount() : 0, requireContext());
|
||||
objArr2[1] = Integer.valueOf(intervalCount);
|
||||
return b.k(this, i, objArr2, null, 4);
|
||||
}
|
||||
|
||||
private final SettingsPremiumViewModel getViewModel() {
|
||||
|
|
|
@ -10,7 +10,7 @@ import java.util.Collections;
|
|||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/CmdReader.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/CmdReader.SCL.lombok */
|
||||
public class CmdReader<T> {
|
||||
private final Class<T> settingsDescriptor;
|
||||
private final List<ParseItem> items = Collections.unmodifiableList(init());
|
||||
|
@ -19,7 +19,7 @@ public class CmdReader<T> {
|
|||
private static final int SCREEN_WIDTH = 72;
|
||||
|
||||
/* renamed from: com.zwitserloot.cmdreader.CmdReader$1State reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/CmdReader$1State.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/CmdReader$1State.SCL.lombok */
|
||||
class C1State {
|
||||
List<ParseItem> used = new ArrayList();
|
||||
final /* synthetic */ Object val$obj;
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Description.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Description.SCL.lombok */
|
||||
public @interface Description {
|
||||
String value();
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Excludes.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Excludes.SCL.lombok */
|
||||
public @interface Excludes {
|
||||
String[] value();
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/FullName.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/FullName.SCL.lombok */
|
||||
public @interface FullName {
|
||||
String value() default "";
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package com.zwitserloot.cmdreader;
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/InvalidCommandLineException.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/InvalidCommandLineException.SCL.lombok */
|
||||
public class InvalidCommandLineException extends Exception {
|
||||
private static final long serialVersionUID = 20080509;
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Mandatory.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Mandatory.SCL.lombok */
|
||||
public @interface Mandatory {
|
||||
String[] onlyIf() default {};
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import java.util.Queue;
|
||||
import java.util.Set;
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/ParseItem.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/ParseItem.SCL.lombok */
|
||||
class ParseItem {
|
||||
private final Field field;
|
||||
private final boolean isCollection;
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Requires.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Requires.SCL.lombok */
|
||||
public @interface Requires {
|
||||
String[] value();
|
||||
}
|
||||
|
|
|
@ -8,6 +8,6 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Sequential.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Sequential.SCL.lombok */
|
||||
public @interface Sequential {
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|||
@Target({ElementType.FIELD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
/* loaded from: com.discord-118105.apk:com/zwitserloot/cmdreader/Shorthand.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:com/zwitserloot/cmdreader/Shorthand.SCL.lombok */
|
||||
public @interface Shorthand {
|
||||
String[] value() default {};
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ import kotlin.jvm.internal.Intrinsics;
|
|||
import kotlinx.coroutines.debug.internal.DebugProbesImpl;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
/* compiled from: DebugProbes.kt */
|
||||
/* loaded from: com.discord-118105.apk:DebugProbesKt.bin */
|
||||
/* loaded from: com.discord-118106.apk:DebugProbesKt.bin */
|
||||
public final class DebugProbesKt {
|
||||
@NotNull
|
||||
public static final <T> Continuation<T> probeCoroutineCreated(@NotNull Continuation<? super T> continuation) {
|
||||
|
|
|
@ -5,11 +5,11 @@ import org.objectweb.asm.ClassVisitor;
|
|||
import org.objectweb.asm.MethodVisitor;
|
||||
import org.objectweb.asm.Opcodes;
|
||||
import org.objectweb.asm.commons.JSRInlinerAdapter;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/AsmUtil.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/AsmUtil.SCL.lombok */
|
||||
class AsmUtil {
|
||||
|
||||
/* renamed from: lombok.bytecode.AsmUtil$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/AsmUtil$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/AsmUtil$1.SCL.lombok */
|
||||
class AnonymousClass1 extends ClassVisitor {
|
||||
AnonymousClass1(int i, ClassVisitor classVisitor) {
|
||||
super(i, classVisitor);
|
||||
|
|
|
@ -3,7 +3,7 @@ package lombok.bytecode;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/ClassFileMetaData.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/ClassFileMetaData.SCL.lombok */
|
||||
public class ClassFileMetaData {
|
||||
private static final byte UTF8 = 1;
|
||||
private static final byte INTEGER = 3;
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.bytecode;
|
|||
|
||||
import org.objectweb.asm.ClassReader;
|
||||
import org.objectweb.asm.ClassWriter;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/FixedClassWriter.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/FixedClassWriter.SCL.lombok */
|
||||
class FixedClassWriter extends ClassWriter {
|
||||
FixedClassWriter(ClassReader classReader, int i) {
|
||||
super(classReader, i);
|
||||
|
|
|
@ -11,10 +11,10 @@ import java.util.ArrayList;
|
|||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import lombok.core.LombokApp;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PoolConstantsApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PoolConstantsApp.SCL.lombok */
|
||||
public class PoolConstantsApp extends LombokApp {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PoolConstantsApp$CmdArgs.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PoolConstantsApp$CmdArgs.SCL.lombok */
|
||||
public static class CmdArgs {
|
||||
@Mandatory
|
||||
@Description("paths to class files to be printed. If a directory is named, all files (recursively) in that directory will be printed.")
|
||||
|
|
|
@ -18,10 +18,10 @@ import java.util.List;
|
|||
import lombok.core.DiagnosticsReceiver;
|
||||
import lombok.core.LombokApp;
|
||||
import lombok.core.PostCompiler;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PostCompilerApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PostCompilerApp.SCL.lombok */
|
||||
public class PostCompilerApp extends LombokApp {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PostCompilerApp$CmdArgs.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PostCompilerApp$CmdArgs.SCL.lombok */
|
||||
public static class CmdArgs {
|
||||
@Mandatory
|
||||
@Description("paths to class files to be converted. If a directory is named, all files (recursively) in that directory will be converted.")
|
||||
|
|
|
@ -7,11 +7,11 @@ import org.objectweb.asm.ClassReader;
|
|||
import org.objectweb.asm.ClassVisitor;
|
||||
import org.objectweb.asm.MethodVisitor;
|
||||
import org.objectweb.asm.Opcodes;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PreventNullAnalysisRemover.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PreventNullAnalysisRemover.SCL.lombok */
|
||||
public class PreventNullAnalysisRemover implements PostCompilerTransformation {
|
||||
|
||||
/* renamed from: lombok.bytecode.PreventNullAnalysisRemover$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PreventNullAnalysisRemover$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PreventNullAnalysisRemover$1.SCL.lombok */
|
||||
class AnonymousClass1 extends ClassVisitor {
|
||||
private final /* synthetic */ AtomicBoolean val$changesMade;
|
||||
|
||||
|
@ -28,7 +28,7 @@ public class PreventNullAnalysisRemover implements PostCompilerTransformation {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.bytecode.PreventNullAnalysisRemover$1PreventNullAnalysisVisitor reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/PreventNullAnalysisRemover$1PreventNullAnalysisVisitor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/PreventNullAnalysisRemover$1PreventNullAnalysisVisitor.SCL.lombok */
|
||||
class C1PreventNullAnalysisVisitor extends MethodVisitor {
|
||||
private final /* synthetic */ AtomicBoolean val$changesMade;
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@ import org.objectweb.asm.Handle;
|
|||
import org.objectweb.asm.Label;
|
||||
import org.objectweb.asm.MethodVisitor;
|
||||
import org.objectweb.asm.Opcodes;
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/SneakyThrowsRemover.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/SneakyThrowsRemover.SCL.lombok */
|
||||
public class SneakyThrowsRemover implements PostCompilerTransformation {
|
||||
|
||||
/* renamed from: lombok.bytecode.SneakyThrowsRemover$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/SneakyThrowsRemover$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/SneakyThrowsRemover$1.SCL.lombok */
|
||||
class AnonymousClass1 extends ClassVisitor {
|
||||
private final /* synthetic */ DiagnosticsReceiver val$diagnostics;
|
||||
private final /* synthetic */ AtomicBoolean val$changesMade;
|
||||
|
@ -33,7 +33,7 @@ public class SneakyThrowsRemover implements PostCompilerTransformation {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.bytecode.SneakyThrowsRemover$1SneakyThrowsRemoverVisitor reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/bytecode/SneakyThrowsRemover$1SneakyThrowsRemoverVisitor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/bytecode/SneakyThrowsRemover$1SneakyThrowsRemoverVisitor.SCL.lombok */
|
||||
class C1SneakyThrowsRemoverVisitor extends MethodVisitor {
|
||||
private boolean methodInsnQueued = false;
|
||||
private final /* synthetic */ DiagnosticsReceiver val$diagnostics;
|
||||
|
|
|
@ -20,7 +20,7 @@ import lombok.core.LombokNode;
|
|||
import lombok.core.configuration.ConfigurationKey;
|
||||
import lombok.core.debug.HistogramTracker;
|
||||
import lombok.permit.Permit;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AST.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AST.SCL.lombok */
|
||||
public abstract class AST<A extends AST<A, L, N>, L extends LombokNode<A, L, N>, N> {
|
||||
private L top;
|
||||
private final String fileName;
|
||||
|
@ -34,7 +34,7 @@ public abstract class AST<A extends AST<A, L, N>, L extends LombokNode<A, L, N>,
|
|||
private static final HistogramTracker configTracker;
|
||||
private static final ConcurrentMap<Class<?>, FieldAccess[]> fieldsOfASTClasses;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AST$FieldAccess.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AST$FieldAccess.SCL.lombok */
|
||||
protected static class FieldAccess {
|
||||
public final Field field;
|
||||
public final int dim;
|
||||
|
@ -45,7 +45,7 @@ public abstract class AST<A extends AST<A, L, N>, L extends LombokNode<A, L, N>,
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AST$Kind.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AST$Kind.SCL.lombok */
|
||||
public enum Kind {
|
||||
COMPILATION_UNIT,
|
||||
TYPE,
|
||||
|
|
|
@ -6,11 +6,11 @@ import java.util.Arrays;
|
|||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AgentLauncher.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AgentLauncher.SCL.lombok */
|
||||
public class AgentLauncher {
|
||||
private static final List<AgentInfo> AGENTS = Collections.unmodifiableList(Arrays.asList(new EclipsePatcherInfo(null)));
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AgentLauncher$AgentInfo.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AgentLauncher$AgentInfo.SCL.lombok */
|
||||
private static abstract class AgentInfo {
|
||||
private AgentInfo() {
|
||||
}
|
||||
|
@ -36,12 +36,12 @@ public class AgentLauncher {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AgentLauncher$AgentLaunchable.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AgentLauncher$AgentLaunchable.SCL.lombok */
|
||||
public interface AgentLaunchable {
|
||||
void runAgent(String str, Instrumentation instrumentation, boolean z2, Class<?> cls) throws Exception;
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AgentLauncher$EclipsePatcherInfo.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AgentLauncher$EclipsePatcherInfo.SCL.lombok */
|
||||
private static class EclipsePatcherInfo extends AgentInfo {
|
||||
private EclipsePatcherInfo() {
|
||||
super(null);
|
||||
|
|
|
@ -6,6 +6,6 @@ import java.lang.annotation.RetentionPolicy;
|
|||
import java.lang.annotation.Target;
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AlreadyHandledAnnotations.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AlreadyHandledAnnotations.SCL.lombok */
|
||||
public @interface AlreadyHandledAnnotations {
|
||||
}
|
||||
|
|
|
@ -24,13 +24,13 @@ import javax.tools.Diagnostic;
|
|||
import lombok.patcher.ClassRootFinder;
|
||||
import lombok.permit.Permit;
|
||||
@SupportedAnnotationTypes({"*"})
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationProcessor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationProcessor.SCL.lombok */
|
||||
public class AnnotationProcessor extends AbstractProcessor {
|
||||
private final List<ProcessorDescriptor> registered = Arrays.asList(new JavacDescriptor(), new EcjDescriptor());
|
||||
private final List<ProcessorDescriptor> active = new ArrayList();
|
||||
private final List<String> delayedWarnings = new ArrayList();
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationProcessor$EcjDescriptor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationProcessor$EcjDescriptor.SCL.lombok */
|
||||
static class EcjDescriptor extends ProcessorDescriptor {
|
||||
EcjDescriptor() {
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ public class AnnotationProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationProcessor$JavacDescriptor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationProcessor$JavacDescriptor.SCL.lombok */
|
||||
static class JavacDescriptor extends ProcessorDescriptor {
|
||||
private Processor processor;
|
||||
|
||||
|
@ -105,7 +105,7 @@ public class AnnotationProcessor extends AbstractProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationProcessor$ProcessorDescriptor.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationProcessor$ProcessorDescriptor.SCL.lombok */
|
||||
static abstract class ProcessorDescriptor {
|
||||
ProcessorDescriptor() {
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import lombok.core.AST;
|
||||
import lombok.permit.Permit;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationValues.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationValues.SCL.lombok */
|
||||
public class AnnotationValues<A extends Annotation> {
|
||||
private final Class<A> type;
|
||||
private final Map<String, AnnotationValue> values;
|
||||
|
@ -21,7 +21,7 @@ public class AnnotationValues<A extends Annotation> {
|
|||
private A cachedInstance = null;
|
||||
|
||||
/* renamed from: lombok.core.AnnotationValues$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationValues$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationValues$1.SCL.lombok */
|
||||
class AnonymousClass1 implements InvocationHandler {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ public class AnnotationValues<A extends Annotation> {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationValues$AnnotationValue.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationValues$AnnotationValue.SCL.lombok */
|
||||
public static class AnnotationValue {
|
||||
public final List<String> raws;
|
||||
public final List<Object> valueGuesses;
|
||||
|
@ -118,7 +118,7 @@ public class AnnotationValues<A extends Annotation> {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/AnnotationValues$AnnotationValueDecodeFail.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/AnnotationValues$AnnotationValueDecodeFail.SCL.lombok */
|
||||
public static class AnnotationValueDecodeFail extends RuntimeException {
|
||||
private static final long serialVersionUID = 1;
|
||||
public final int idx;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/Augments.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/Augments.SCL.lombok */
|
||||
public final class Augments {
|
||||
public static final FieldAugment<ClassLoader, Boolean> ClassLoader_lombokAlreadyAddedTo = FieldAugment.augment(ClassLoader.class, Boolean.TYPE, "lombok$alreadyAddedTo");
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/ClassLiteral.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/ClassLiteral.SCL.lombok */
|
||||
public class ClassLiteral {
|
||||
private final String className;
|
||||
|
||||
|
|
|
@ -3,11 +3,11 @@ package lombok.core;
|
|||
import java.util.Iterator;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.ConcurrentMap;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/CleanupRegistry.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/CleanupRegistry.SCL.lombok */
|
||||
public class CleanupRegistry {
|
||||
private final ConcurrentMap<CleanupKey, CleanupTask> tasks = new ConcurrentHashMap();
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/CleanupRegistry$CleanupKey.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/CleanupRegistry$CleanupKey.SCL.lombok */
|
||||
private static final class CleanupKey {
|
||||
private final String key;
|
||||
private final Object target;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/CleanupTask.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/CleanupTask.SCL.lombok */
|
||||
public interface CleanupTask {
|
||||
void cleanup();
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/DiagnosticsReceiver.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/DiagnosticsReceiver.SCL.lombok */
|
||||
public interface DiagnosticsReceiver {
|
||||
public static final DiagnosticsReceiver CONSOLE = new AnonymousClass1();
|
||||
|
||||
/* renamed from: lombok.core.DiagnosticsReceiver$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/DiagnosticsReceiver$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/DiagnosticsReceiver$1.SCL.lombok */
|
||||
class AnonymousClass1 implements DiagnosticsReceiver {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
|
|
@ -8,10 +8,10 @@ import java.lang.reflect.Modifier;
|
|||
import java.util.Map;
|
||||
import java.util.WeakHashMap;
|
||||
import lombok.permit.Permit;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/FieldAugment.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/FieldAugment.SCL.lombok */
|
||||
public abstract class FieldAugment<T, F> {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/FieldAugment$MapFieldAugment.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/FieldAugment$MapFieldAugment.SCL.lombok */
|
||||
private static class MapFieldAugment<T, F> extends FieldAugment<T, F> {
|
||||
final Map<T, Object> values = new WeakHashMap();
|
||||
final F defaultValue;
|
||||
|
@ -113,7 +113,7 @@ public abstract class FieldAugment<T, F> {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/FieldAugment$MapWeakFieldAugment.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/FieldAugment$MapWeakFieldAugment.SCL.lombok */
|
||||
static class MapWeakFieldAugment<T, F> extends MapFieldAugment<T, F> {
|
||||
MapWeakFieldAugment(F f) {
|
||||
super(f);
|
||||
|
@ -138,7 +138,7 @@ public abstract class FieldAugment<T, F> {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/FieldAugment$ReflectionFieldAugment.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/FieldAugment$ReflectionFieldAugment.SCL.lombok */
|
||||
private static class ReflectionFieldAugment<T, F> extends FieldAugment<T, F> {
|
||||
private final Object lock = new Object();
|
||||
private final Field field;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/FieldSelect.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/FieldSelect.SCL.lombok */
|
||||
public class FieldSelect {
|
||||
private final String finalPart;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package lombok.core;
|
|||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/GuavaTypeMap.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/GuavaTypeMap.SCL.lombok */
|
||||
public final class GuavaTypeMap {
|
||||
private static final Map<String, String> TYPE_TO_GUAVA_TYPE;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||
import java.lang.annotation.Target;
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/HandlerPriority.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/HandlerPriority.SCL.lombok */
|
||||
public @interface HandlerPriority {
|
||||
int value();
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lombok.core;
|
||||
|
||||
import java.util.Collection;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/ImportList.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/ImportList.SCL.lombok */
|
||||
public interface ImportList {
|
||||
String getFullyQualifiedNameForSimpleName(String str);
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.core;
|
|||
|
||||
import com.adjust.sdk.Constants;
|
||||
import java.util.regex.Pattern;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/JavaIdentifiers.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/JavaIdentifiers.SCL.lombok */
|
||||
public class JavaIdentifiers {
|
||||
private static final LombokImmutableList<String> KEYWORDS = LombokImmutableList.of("public", "private", "protected", "default", "switch", "case", "for", "do", "goto", "const", "strictfp", "while", "if", "else", "byte", "short", "int", Constants.LONG, "float", "double", "void", "boolean", "char", "null", "false", "true", "continue", "break", "return", "instanceof", "synchronized", "volatile", "transient", "final", "static", "interface", "class", "extends", "implements", "throws", "throw", "catch", "try", "finally", "abstract", "assert", "enum", "import", "package", "native", "new", "super", "this");
|
||||
private static final Pattern PRIMITIVE_TYPE_NAME_PATTERN = Pattern.compile("^(?:boolean|byte|short|int|long|float|double|char)$");
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.core;
|
|||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokApp.SCL.lombok */
|
||||
public abstract class LombokApp {
|
||||
public abstract int runApp(List<String> list) throws Exception;
|
||||
|
||||
|
|
|
@ -10,14 +10,14 @@ import lombok.core.configuration.ConfigurationProblemReporter;
|
|||
import lombok.core.configuration.ConfigurationResolver;
|
||||
import lombok.core.configuration.ConfigurationResolverFactory;
|
||||
import lombok.core.configuration.FileSystemSourceCache;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokConfiguration.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokConfiguration.SCL.lombok */
|
||||
public class LombokConfiguration {
|
||||
private static final ConfigurationResolver NULL_RESOLVER = new AnonymousClass1();
|
||||
private static FileSystemSourceCache cache = new FileSystemSourceCache();
|
||||
private static ConfigurationResolverFactory configurationResolverFactory;
|
||||
|
||||
/* renamed from: lombok.core.LombokConfiguration$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokConfiguration$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokConfiguration$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationResolver {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ public class LombokConfiguration {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.LombokConfiguration$2 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokConfiguration$2.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokConfiguration$2.SCL.lombok */
|
||||
class AnonymousClass2 implements ConfigurationResolverFactory {
|
||||
AnonymousClass2() {
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ public class LombokConfiguration {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.LombokConfiguration$3 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokConfiguration$3.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokConfiguration$3.SCL.lombok */
|
||||
class AnonymousClass3 implements ConfigurationResolverFactory {
|
||||
private final /* synthetic */ ConfigurationFileToSource val$fileToSource;
|
||||
|
||||
|
|
|
@ -5,13 +5,13 @@ import java.util.Arrays;
|
|||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.NoSuchElementException;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokImmutableList.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokImmutableList.SCL.lombok */
|
||||
public final class LombokImmutableList<T> implements Iterable<T> {
|
||||
private Object[] content;
|
||||
private static final LombokImmutableList<?> EMPTY = new LombokImmutableList<>(new Object[0]);
|
||||
|
||||
/* renamed from: lombok.core.LombokImmutableList$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokImmutableList$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokImmutableList$1.SCL.lombok */
|
||||
class AnonymousClass1 implements Iterator<T> {
|
||||
private int idx = 0;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.Collections;
|
|||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokInternalAliasing.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokInternalAliasing.SCL.lombok */
|
||||
public class LombokInternalAliasing {
|
||||
public static final Map<String, String> ALIASES;
|
||||
public static final Map<String, Collection<String>> REVERSE_ALIASES;
|
||||
|
|
|
@ -10,7 +10,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import lombok.core.AST;
|
||||
import lombok.core.LombokNode;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/LombokNode.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/LombokNode.SCL.lombok */
|
||||
public abstract class LombokNode<A extends AST<A, L, N>, L extends LombokNode<A, L, N>, N> implements DiagnosticsReceiver {
|
||||
protected final AST.Kind kind;
|
||||
protected final N node;
|
||||
|
|
|
@ -9,13 +9,13 @@ import java.util.Collection;
|
|||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/Main.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/Main.SCL.lombok */
|
||||
public class Main {
|
||||
private static final Collection<?> HELP_SWITCHES = Collections.unmodifiableList(Arrays.asList("/?", "/h", "/help", "-h", "-help", "--help", "help", "h"));
|
||||
private final List<LombokApp> apps;
|
||||
private final List<String> args;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/Main$LicenseApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/Main$LicenseApp.SCL.lombok */
|
||||
public static class LicenseApp extends LombokApp {
|
||||
@Override // lombok.core.LombokApp
|
||||
public String getAppName() {
|
||||
|
@ -54,7 +54,7 @@ public class Main {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/Main$VersionApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/Main$VersionApp.SCL.lombok */
|
||||
public static class VersionApp extends LombokApp {
|
||||
@Override // lombok.core.LombokApp
|
||||
public String getAppName() {
|
||||
|
|
|
@ -9,12 +9,12 @@ import java.io.Writer;
|
|||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PostCompiler.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PostCompiler.SCL.lombok */
|
||||
public final class PostCompiler {
|
||||
private static List<PostCompilerTransformation> transformations;
|
||||
|
||||
/* renamed from: lombok.core.PostCompiler$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PostCompiler$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PostCompiler$1.SCL.lombok */
|
||||
class AnonymousClass1 extends ByteArrayOutputStream {
|
||||
private final /* synthetic */ String val$fileName;
|
||||
private final /* synthetic */ DiagnosticsReceiver val$diagnostics;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PostCompilerTransformation.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PostCompilerTransformation.SCL.lombok */
|
||||
public interface PostCompilerTransformation {
|
||||
byte[] applyTransformations(byte[] bArr, String str, DiagnosticsReceiver diagnosticsReceiver);
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||
import java.lang.annotation.Target;
|
||||
@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.METHOD, ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PrintAST.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PrintAST.SCL.lombok */
|
||||
public @interface PrintAST {
|
||||
String outfile() default "";
|
||||
|
||||
|
|
|
@ -15,10 +15,10 @@ import java.util.jar.JarOutputStream;
|
|||
import java.util.zip.ZipEntry;
|
||||
import lombok.Lombok;
|
||||
import lombok.patcher.ClassRootFinder;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PublicApiCreatorApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PublicApiCreatorApp.SCL.lombok */
|
||||
public class PublicApiCreatorApp extends LombokApp {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/PublicApiCreatorApp$Fail.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/PublicApiCreatorApp$Fail.SCL.lombok */
|
||||
private static class Fail extends Exception {
|
||||
Fail(String str) {
|
||||
super(str);
|
||||
|
|
|
@ -16,18 +16,18 @@ import java.util.Enumeration;
|
|||
import java.util.Iterator;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/SpiLoadUtil.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/SpiLoadUtil.SCL.lombok */
|
||||
public class SpiLoadUtil {
|
||||
|
||||
/* renamed from: lombok.core.SpiLoadUtil$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/SpiLoadUtil$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/SpiLoadUtil$1.SCL.lombok */
|
||||
class AnonymousClass1 implements Iterable<C> {
|
||||
private final /* synthetic */ Iterator val$names;
|
||||
private final /* synthetic */ Class val$target;
|
||||
private final /* synthetic */ ClassLoader val$fLoader;
|
||||
|
||||
/* renamed from: lombok.core.SpiLoadUtil$1$1 reason: invalid class name and collision with other inner class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/SpiLoadUtil$1$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/SpiLoadUtil$1$1.SCL.lombok */
|
||||
class C04141 implements Iterator<C> {
|
||||
private final /* synthetic */ Iterator val$names;
|
||||
private final /* synthetic */ Class val$target;
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.util.HashMap;
|
|||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/TypeLibrary.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/TypeLibrary.SCL.lombok */
|
||||
public class TypeLibrary {
|
||||
private final Map<String, Object> unqualifiedToQualifiedMap;
|
||||
private final String unqualified;
|
||||
|
|
|
@ -3,7 +3,7 @@ package lombok.core;
|
|||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import lombok.core.AST;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/TypeResolver.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/TypeResolver.SCL.lombok */
|
||||
public class TypeResolver {
|
||||
private ImportList imports;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.core;
|
|||
|
||||
import com.adjust.sdk.Constants;
|
||||
import java.io.InputStream;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/Version.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/Version.SCL.lombok */
|
||||
public class Version {
|
||||
private static final String VERSION = "1.18.16";
|
||||
private static final String RELEASE_NAME = "Envious Ferret";
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.core.configuration;
|
|||
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/AllowHelper.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/AllowHelper.SCL.lombok */
|
||||
public final class AllowHelper {
|
||||
private static final Collection<? extends ConfigurationKey<?>> ALLOWABLE = Collections.emptySet();
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import lombok.ConfigurationKeys;
|
||||
import lombok.core.configuration.ConfigurationSource;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/BubblingConfigurationResolver.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/BubblingConfigurationResolver.SCL.lombok */
|
||||
public class BubblingConfigurationResolver implements ConfigurationResolver {
|
||||
private final ConfigurationFile start;
|
||||
private final ConfigurationFileToSource fileMapper;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/CallSuperType.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/CallSuperType.SCL.lombok */
|
||||
public enum CallSuperType {
|
||||
CALL,
|
||||
SKIP,
|
||||
|
|
|
@ -2,7 +2,7 @@ package lombok.core.configuration;
|
|||
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/CheckerFrameworkVersion.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/CheckerFrameworkVersion.SCL.lombok */
|
||||
public final class CheckerFrameworkVersion implements ConfigurationValueType {
|
||||
private final int version;
|
||||
private static final int DEFAULT = 3200;
|
||||
|
|
|
@ -32,7 +32,7 @@ import lombok.ConfigurationKeys;
|
|||
import lombok.core.LombokApp;
|
||||
import lombok.core.configuration.ConfigurationKeysLoader;
|
||||
import lombok.core.configuration.ConfigurationParser;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp.SCL.lombok */
|
||||
public class ConfigurationApp extends LombokApp {
|
||||
private PrintStream out = System.out;
|
||||
private PrintStream err = System.err;
|
||||
|
@ -40,7 +40,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
private static final ConfigurationProblemReporter VOID = new AnonymousClass1();
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationApp$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationProblemReporter {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationApp$2 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$2.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$2.SCL.lombok */
|
||||
class AnonymousClass2 implements ConfigurationProblemReporter {
|
||||
private final /* synthetic */ List val$problems;
|
||||
|
||||
|
@ -66,7 +66,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationApp$3 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$3.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$3.SCL.lombok */
|
||||
class AnonymousClass3 implements ConfigurationParser.Collector {
|
||||
private final /* synthetic */ Deque val$round;
|
||||
private final /* synthetic */ Collection val$keys;
|
||||
|
@ -116,7 +116,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationApp$4 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$4.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$4.SCL.lombok */
|
||||
class AnonymousClass4 implements Comparator<URI> {
|
||||
AnonymousClass4() {
|
||||
}
|
||||
|
@ -126,7 +126,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$CmdArgs.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$CmdArgs.SCL.lombok */
|
||||
public static class CmdArgs {
|
||||
@Mandatory(onlyIfNot = {"help", "generate"})
|
||||
@Description("Paths to java files or directories the configuration is to be printed for.")
|
||||
|
@ -160,7 +160,7 @@ public class ConfigurationApp extends LombokApp {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationApp$Source.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationApp$Source.SCL.lombok */
|
||||
private static final class Source {
|
||||
final ConfigurationFile file;
|
||||
final String description;
|
||||
|
|
|
@ -10,14 +10,14 @@ import java.util.Arrays;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType.SCL.lombok */
|
||||
public final class ConfigurationDataType {
|
||||
private static final Map<Class<?>, ConfigurationValueParser> SIMPLE_TYPES;
|
||||
private final boolean isList;
|
||||
private final ConfigurationValueParser parser;
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationValueParser {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$2 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$2.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$2.SCL.lombok */
|
||||
class AnonymousClass2 implements ConfigurationValueParser {
|
||||
AnonymousClass2() {
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$3 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$3.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$3.SCL.lombok */
|
||||
class AnonymousClass3 implements ConfigurationValueParser {
|
||||
AnonymousClass3() {
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$4 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$4.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$4.SCL.lombok */
|
||||
class AnonymousClass4 implements ConfigurationValueParser {
|
||||
AnonymousClass4() {
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$5 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$5.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$5.SCL.lombok */
|
||||
class AnonymousClass5 implements ConfigurationValueParser {
|
||||
AnonymousClass5() {
|
||||
}
|
||||
|
@ -127,7 +127,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$6 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$6.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$6.SCL.lombok */
|
||||
class AnonymousClass6 implements ConfigurationValueParser {
|
||||
private final /* synthetic */ Class val$rawType;
|
||||
private final /* synthetic */ Class val$type;
|
||||
|
@ -167,7 +167,7 @@ public final class ConfigurationDataType {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationDataType$7 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationDataType$7.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationDataType$7.SCL.lombok */
|
||||
class AnonymousClass7 implements ConfigurationValueParser {
|
||||
private final /* synthetic */ Method val$valueOfMethod;
|
||||
private final /* synthetic */ Method val$descriptionMethod;
|
||||
|
|
|
@ -15,7 +15,7 @@ import java.util.regex.Matcher;
|
|||
import java.util.regex.Pattern;
|
||||
import java.util.zip.ZipEntry;
|
||||
import java.util.zip.ZipInputStream;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFile.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFile.SCL.lombok */
|
||||
public abstract class ConfigurationFile {
|
||||
private static final String LOMBOK_CONFIG_FILENAME = "lombok.config";
|
||||
private final String identifier;
|
||||
|
@ -24,7 +24,7 @@ public abstract class ConfigurationFile {
|
|||
private static final ThreadLocal<byte[]> buffers = new AnonymousClass1();
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationFile$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFile$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFile$1.SCL.lombok */
|
||||
class AnonymousClass1 extends ThreadLocal<byte[]> {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ public abstract class ConfigurationFile {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFile$ArchivedConfigurationFile.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFile$ArchivedConfigurationFile.SCL.lombok */
|
||||
private static class ArchivedConfigurationFile extends ConfigurationFile {
|
||||
private static final URI ROOT1 = URI.create("http://x.y/a/");
|
||||
private static final URI ROOT2 = URI.create("ftp://y.x/b/");
|
||||
|
@ -172,7 +172,7 @@ public abstract class ConfigurationFile {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFile$CharSequenceConfigurationFile.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFile$CharSequenceConfigurationFile.SCL.lombok */
|
||||
private static class CharSequenceConfigurationFile extends ConfigurationFile {
|
||||
private final CharSequence contents;
|
||||
private final long lastModified;
|
||||
|
@ -213,7 +213,7 @@ public abstract class ConfigurationFile {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFile$RegularConfigurationFile.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFile$RegularConfigurationFile.SCL.lombok */
|
||||
private static class RegularConfigurationFile extends ConfigurationFile {
|
||||
private final File file;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationFileToSource.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationFileToSource.SCL.lombok */
|
||||
public interface ConfigurationFileToSource {
|
||||
ConfigurationSource parsed(ConfigurationFile configurationFile);
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.util.Collections;
|
|||
import java.util.Map;
|
||||
import java.util.TreeMap;
|
||||
import java.util.regex.Pattern;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationKey.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationKey.SCL.lombok */
|
||||
public abstract class ConfigurationKey<T> {
|
||||
private static final Pattern VALID_NAMES = Pattern.compile("[-_a-zA-Z][-.\\w]*(?<![-.])");
|
||||
private static final TreeMap<String, ConfigurationKey<?>> registeredKeys = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
|
||||
|
|
|
@ -5,10 +5,10 @@ import java.util.Iterator;
|
|||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import lombok.ConfigurationKeys;
|
||||
import lombok.core.SpiLoadUtil;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationKeysLoader.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationKeysLoader.SCL.lombok */
|
||||
public interface ConfigurationKeysLoader {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader.SCL.lombok */
|
||||
public static class LoaderLoader {
|
||||
private static final AtomicBoolean alreadyLoaded = new AtomicBoolean(false);
|
||||
|
||||
|
|
|
@ -4,14 +4,14 @@ import java.io.IOException;
|
|||
import java.util.Map;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationParser.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationParser.SCL.lombok */
|
||||
public class ConfigurationParser {
|
||||
private static final Pattern LINE = Pattern.compile("(?:clear\\s+([^=]+))|(?:(\\S*?)\\s*([-+]?=)\\s*(.*?))");
|
||||
private static final Pattern NEWLINE_FINDER = Pattern.compile("^[\t ]*(.*?)[\t\r ]*$", 8);
|
||||
private static final Pattern IMPORT = Pattern.compile("import\\s+(.+?)");
|
||||
private ConfigurationProblemReporter reporter;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationParser$Collector.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationParser$Collector.SCL.lombok */
|
||||
public interface Collector {
|
||||
void addImport(ConfigurationFile configurationFile, ConfigurationFile configurationFile2, int i);
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
package lombok.core.configuration;
|
||||
|
||||
import lombok.eclipse.handlers.EclipseHandlerUtil;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationProblemReporter.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationProblemReporter.SCL.lombok */
|
||||
public interface ConfigurationProblemReporter {
|
||||
public static final ConfigurationProblemReporter CONSOLE = new AnonymousClass1();
|
||||
|
||||
/* renamed from: lombok.core.configuration.ConfigurationProblemReporter$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationProblemReporter$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationProblemReporter$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationProblemReporter {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationResolver.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationResolver.SCL.lombok */
|
||||
public interface ConfigurationResolver {
|
||||
<T> T resolve(ConfigurationKey<T> configurationKey);
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lombok.core.configuration;
|
||||
|
||||
import java.net.URI;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationResolverFactory.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationResolverFactory.SCL.lombok */
|
||||
public interface ConfigurationResolverFactory {
|
||||
ConfigurationResolver createResolver(URI uri);
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package lombok.core.configuration;
|
||||
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationSource.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationSource.SCL.lombok */
|
||||
public interface ConfigurationSource {
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationSource$ListModification.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationSource$ListModification.SCL.lombok */
|
||||
public static final class ListModification {
|
||||
private final Object value;
|
||||
private final boolean added;
|
||||
|
@ -23,7 +23,7 @@ public interface ConfigurationSource {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationSource$Result.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationSource$Result.SCL.lombok */
|
||||
public static final class Result {
|
||||
private final Object value;
|
||||
private final boolean authoritative;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationValueParser.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationValueParser.SCL.lombok */
|
||||
interface ConfigurationValueParser {
|
||||
Object parse(String str);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ConfigurationValueType.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ConfigurationValueType.SCL.lombok */
|
||||
public interface ConfigurationValueType {
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||
import java.lang.annotation.Target;
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/ExampleValueString.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/ExampleValueString.SCL.lombok */
|
||||
public @interface ExampleValueString {
|
||||
String value();
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.concurrent.ConcurrentHashMap;
|
|||
import java.util.concurrent.ConcurrentMap;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import lombok.core.debug.ProblemReporter;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/FileSystemSourceCache.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/FileSystemSourceCache.SCL.lombok */
|
||||
public class FileSystemSourceCache {
|
||||
private static final long FULL_CACHE_CLEAR_INTERVAL = TimeUnit.MINUTES.toMillis(30);
|
||||
private static final long RECHECK_FILESYSTEM = TimeUnit.SECONDS.toMillis(2);
|
||||
|
@ -17,7 +17,7 @@ public class FileSystemSourceCache {
|
|||
private volatile long lastCacheClear = System.currentTimeMillis();
|
||||
|
||||
/* renamed from: lombok.core.configuration.FileSystemSourceCache$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/FileSystemSourceCache$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/FileSystemSourceCache$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationFileToSource {
|
||||
private final /* synthetic */ ConfigurationParser val$parser;
|
||||
|
||||
|
@ -31,7 +31,7 @@ public class FileSystemSourceCache {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/FileSystemSourceCache$Content.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/FileSystemSourceCache$Content.SCL.lombok */
|
||||
private static class Content {
|
||||
ConfigurationSource source;
|
||||
long lastModified;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package lombok.core.configuration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/FlagUsageType.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/FlagUsageType.SCL.lombok */
|
||||
public enum FlagUsageType {
|
||||
WARNING,
|
||||
ERROR,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lombok.core.configuration;
|
||||
|
||||
import lombok.core.JavaIdentifiers;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/IdentifierName.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/IdentifierName.SCL.lombok */
|
||||
public final class IdentifierName implements ConfigurationValueType {
|
||||
private final String name;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/LogDeclaration.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/LogDeclaration.SCL.lombok */
|
||||
public final class LogDeclaration implements ConfigurationValueType {
|
||||
private static final Pattern PARAMETERS_PATTERN = Pattern.compile("(?:\\(([A-Z,]*)\\))");
|
||||
private static final Pattern DECLARATION_PATTERN = Pattern.compile("^(?:([^ ]+) )?([^(]+)\\.([^(]+)(" + PARAMETERS_PATTERN.pattern() + "+)$");
|
||||
|
@ -15,7 +15,7 @@ public final class LogDeclaration implements ConfigurationValueType {
|
|||
private final List<LogFactoryParameter> parametersWithoutTopic;
|
||||
private final List<LogFactoryParameter> parametersWithTopic;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/LogDeclaration$LogFactoryParameter.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/LogDeclaration$LogFactoryParameter.SCL.lombok */
|
||||
public enum LogFactoryParameter {
|
||||
TYPE,
|
||||
NAME,
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.ArrayList;
|
|||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullAnnotationLibrary.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullAnnotationLibrary.SCL.lombok */
|
||||
public final class NullAnnotationLibrary implements ConfigurationValueType {
|
||||
private final String key;
|
||||
private final String nonNullAnnotation;
|
||||
|
|
|
@ -5,7 +5,7 @@ import lombok.core.LombokImmutableList;
|
|||
import lombok.core.handlers.HandlerUtil;
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
@ExampleValueString("[NullPointerException | IllegalArgumentException | Assertion | JDK | Guava]")
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType.SCL.lombok */
|
||||
public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType> {
|
||||
public static final NullCheckExceptionType ILLEGAL_ARGUMENT_EXCEPTION = new AnonymousClass1("ILLEGAL_ARGUMENT_EXCEPTION", 0);
|
||||
public static final NullCheckExceptionType NULL_POINTER_EXCEPTION = new AnonymousClass2("NULL_POINTER_EXCEPTION", 1);
|
||||
|
@ -18,7 +18,7 @@ public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType
|
|||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
/* renamed from: lombok.core.configuration.NullCheckExceptionType$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType$1.SCL.lombok */
|
||||
class AnonymousClass1 extends NullCheckExceptionType {
|
||||
AnonymousClass1(String str, int i) {
|
||||
super(str, i, null);
|
||||
|
@ -37,7 +37,7 @@ public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType
|
|||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
/* renamed from: lombok.core.configuration.NullCheckExceptionType$2 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType$2.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType$2.SCL.lombok */
|
||||
class AnonymousClass2 extends NullCheckExceptionType {
|
||||
AnonymousClass2(String str, int i) {
|
||||
super(str, i, null);
|
||||
|
@ -56,7 +56,7 @@ public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType
|
|||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
/* renamed from: lombok.core.configuration.NullCheckExceptionType$3 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType$3.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType$3.SCL.lombok */
|
||||
class AnonymousClass3 extends NullCheckExceptionType {
|
||||
AnonymousClass3(String str, int i) {
|
||||
super(str, i, null);
|
||||
|
@ -75,7 +75,7 @@ public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType
|
|||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
/* renamed from: lombok.core.configuration.NullCheckExceptionType$4 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType$4.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType$4.SCL.lombok */
|
||||
class AnonymousClass4 extends NullCheckExceptionType {
|
||||
AnonymousClass4(String str, int i) {
|
||||
super(str, i, null);
|
||||
|
@ -94,7 +94,7 @@ public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType
|
|||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
|
||||
/* renamed from: lombok.core.configuration.NullCheckExceptionType$5 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/NullCheckExceptionType$5.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/NullCheckExceptionType$5.SCL.lombok */
|
||||
class AnonymousClass5 extends NullCheckExceptionType {
|
||||
AnonymousClass5(String str, int i) {
|
||||
super(str, i, null);
|
||||
|
|
|
@ -8,13 +8,13 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import lombok.core.configuration.ConfigurationParser;
|
||||
import lombok.core.configuration.ConfigurationSource;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/SingleConfigurationSource.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/SingleConfigurationSource.SCL.lombok */
|
||||
public final class SingleConfigurationSource implements ConfigurationSource {
|
||||
private final Map<ConfigurationKey<?>, ConfigurationSource.Result> values = new HashMap();
|
||||
private final List<ConfigurationFile> imports;
|
||||
|
||||
/* renamed from: lombok.core.configuration.SingleConfigurationSource$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/SingleConfigurationSource$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/SingleConfigurationSource$1.SCL.lombok */
|
||||
class AnonymousClass1 implements ConfigurationParser.Collector {
|
||||
private final /* synthetic */ List val$imports;
|
||||
private final /* synthetic */ Map val$values;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lombok.core.configuration;
|
||||
|
||||
import lombok.core.JavaIdentifiers;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/configuration/TypeName.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/configuration/TypeName.SCL.lombok */
|
||||
public final class TypeName implements ConfigurationValueType {
|
||||
private final String name;
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import java.util.Date;
|
|||
import java.util.Random;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import lombok.core.Version;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/AssertionLogger.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/AssertionLogger.SCL.lombok */
|
||||
public class AssertionLogger {
|
||||
private static final String LOG_PATH;
|
||||
private static final AtomicBoolean loggedIntro;
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/DebugSnapshot.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/DebugSnapshot.SCL.lombok */
|
||||
public class DebugSnapshot implements Comparable<DebugSnapshot> {
|
||||
private static AtomicLong counter = new AtomicLong();
|
||||
private final long bits;
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import java.util.WeakHashMap;
|
||||
import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/DebugSnapshotStore.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/DebugSnapshotStore.SCL.lombok */
|
||||
public class DebugSnapshotStore {
|
||||
public static final DebugSnapshotStore INSTANCE = new DebugSnapshotStore();
|
||||
public static final boolean GLOBAL_DSS_DISABLE_SWITCH = true;
|
||||
|
|
|
@ -6,12 +6,12 @@ import java.io.FileOutputStream;
|
|||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
import java.io.StringWriter;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/FileLog.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/FileLog.SCL.lombok */
|
||||
public class FileLog {
|
||||
private static FileOutputStream fos;
|
||||
|
||||
/* renamed from: lombok.core.debug.FileLog$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/FileLog$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/FileLog$1.SCL.lombok */
|
||||
class AnonymousClass1 extends Thread {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.io.PrintStream;
|
|||
import java.util.GregorianCalendar;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.concurrent.atomic.AtomicStampedReference;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/HistogramTracker.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/HistogramTracker.SCL.lombok */
|
||||
public class HistogramTracker {
|
||||
private static final long[] RANGES = {250001, 500001, 1000001, 2000001, 4000001, 8000001, 16000001, 32000001, 64000001, 128000001, 256000001, 512000001, 1024000001, 2048000001, 10000000001L};
|
||||
private static final long REPORT_WINDOW = 60000;
|
||||
|
@ -14,7 +14,7 @@ public class HistogramTracker {
|
|||
private final PrintStream out;
|
||||
|
||||
/* renamed from: lombok.core.debug.HistogramTracker$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/HistogramTracker$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/HistogramTracker$1.SCL.lombok */
|
||||
class AnonymousClass1 extends Thread {
|
||||
AnonymousClass1(String str) {
|
||||
super(str);
|
||||
|
|
|
@ -6,11 +6,11 @@ import org.eclipse.core.runtime.ILog;
|
|||
import org.eclipse.core.runtime.Platform;
|
||||
import org.eclipse.core.runtime.Status;
|
||||
import org.osgi.framework.Bundle;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/ProblemReporter.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/ProblemReporter.SCL.lombok */
|
||||
public class ProblemReporter {
|
||||
private static ErrorLogger logger;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/ProblemReporter$EclipseWorkspaceLogger.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/ProblemReporter$EclipseWorkspaceLogger.SCL.lombok */
|
||||
private static class EclipseWorkspaceLogger implements ErrorLogger {
|
||||
private static final int MAX_LOG = 200;
|
||||
private static final long SQUELCH_TIMEOUT = TimeUnit.HOURS.toMillis(1);
|
||||
|
@ -70,7 +70,7 @@ public class ProblemReporter {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/ProblemReporter$ErrorLogger.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/ProblemReporter$ErrorLogger.SCL.lombok */
|
||||
private interface ErrorLogger {
|
||||
void info(String str, Throwable th);
|
||||
|
||||
|
@ -79,7 +79,7 @@ public class ProblemReporter {
|
|||
void error(String str, Throwable th);
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/debug/ProblemReporter$TerminalLogger.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/debug/ProblemReporter$TerminalLogger.SCL.lombok */
|
||||
private static class TerminalLogger implements ErrorLogger {
|
||||
private TerminalLogger() {
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ import lombok.core.configuration.ConfigurationKey;
|
|||
import lombok.core.configuration.FlagUsageType;
|
||||
import lombok.experimental.Accessors;
|
||||
import lombok.experimental.FieldDefaults;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/HandlerUtil.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/HandlerUtil.SCL.lombok */
|
||||
public class HandlerUtil {
|
||||
public static final String DEFAULT_EXCEPTION_FOR_NON_NULL = "java.lang.NullPointerException";
|
||||
public static final List<String> NONNULL_ANNOTATIONS = Collections.unmodifiableList(Arrays.asList("androidx.annotation.NonNull", "android.support.annotation.NonNull", "com.sun.istack.internal.NotNull", "edu.umd.cs.findbugs.annotations.NonNull", "javax.annotation.Nonnull", "lombok.NonNull", "org.checkerframework.checker.nullness.qual.NonNull", "org.eclipse.jdt.annotation.NonNull", "org.eclipse.jgit.annotations.NonNull", "org.jetbrains.annotations.NotNull", "org.jmlspecs.annotation.NonNull", "org.netbeans.api.annotations.common.NonNull", "org.springframework.lang.NonNull"));
|
||||
|
@ -43,7 +43,7 @@ public class HandlerUtil {
|
|||
private static final Pattern LINE_BREAK_FINDER = Pattern.compile("(\\r?\\n)?");
|
||||
private static final Pattern FIND_RETURN = Pattern.compile("^\\s*\\**\\s*@returns?\\s+.*$", 10);
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/HandlerUtil$FieldAccess.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/HandlerUtil$FieldAccess.SCL.lombok */
|
||||
public enum FieldAccess {
|
||||
GETTER,
|
||||
PREFER_FIELD,
|
||||
|
|
|
@ -12,11 +12,11 @@ import lombok.ToString;
|
|||
import lombok.core.AST;
|
||||
import lombok.core.AnnotationValues;
|
||||
import lombok.core.LombokNode;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/InclusionExclusionUtils.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/InclusionExclusionUtils.SCL.lombok */
|
||||
public class InclusionExclusionUtils {
|
||||
|
||||
/* renamed from: lombok.core.handlers.InclusionExclusionUtils$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/InclusionExclusionUtils$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/InclusionExclusionUtils$1.SCL.lombok */
|
||||
class AnonymousClass1 implements Comparator<Included<L, ToString.Include>> {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ public class InclusionExclusionUtils {
|
|||
}
|
||||
|
||||
/* renamed from: lombok.core.handlers.InclusionExclusionUtils$2 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/InclusionExclusionUtils$2.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/InclusionExclusionUtils$2.SCL.lombok */
|
||||
class AnonymousClass2 implements Comparator<Included<L, EqualsAndHashCode.Include>> {
|
||||
AnonymousClass2() {
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ public class InclusionExclusionUtils {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/InclusionExclusionUtils$Included.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/InclusionExclusionUtils$Included.SCL.lombok */
|
||||
public static class Included<L, I extends Annotation> {
|
||||
private final L node;
|
||||
private final I inc;
|
||||
|
|
|
@ -10,7 +10,7 @@ import lombok.extern.log4j.Log4j;
|
|||
import lombok.extern.log4j.Log4j2;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import lombok.extern.slf4j.XSlf4j;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/LoggingFramework.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/LoggingFramework.SCL.lombok */
|
||||
public class LoggingFramework {
|
||||
public static final LoggingFramework COMMONS = new LoggingFramework(CommonsLog.class, LogDeclaration.valueOf("org.apache.commons.logging.Log org.apache.commons.logging.LogFactory.getLog(TYPE)(TOPIC)"));
|
||||
public static final LoggingFramework JUL = new LoggingFramework(Log.class, LogDeclaration.valueOf("java.util.logging.Logger java.util.logging.Logger.getLogger(NAME)(TOPIC)"));
|
||||
|
|
|
@ -7,7 +7,7 @@ import java.io.InputStream;
|
|||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/Singulars.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/Singulars.SCL.lombok */
|
||||
public class Singulars {
|
||||
private static final List<String> SINGULAR_STORE = new ArrayList();
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package lombok.core.handlers;
|
|||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import lombok.core.runtimeDependencies.RuntimeDependencyInfo;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */
|
||||
public class SneakyThrowsAndCleanupDependencyInfo implements RuntimeDependencyInfo {
|
||||
@Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo
|
||||
public List<String> getRuntimeDependencies() {
|
||||
|
|
|
@ -22,11 +22,11 @@ import java.util.jar.JarOutputStream;
|
|||
import java.util.zip.ZipEntry;
|
||||
import lombok.core.LombokApp;
|
||||
import lombok.core.SpiLoadUtil;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp.SCL.lombok */
|
||||
public class CreateLombokRuntimeApp extends LombokApp {
|
||||
private List<RuntimeDependencyInfo> infoObjects;
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$CmdArgs.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$CmdArgs.SCL.lombok */
|
||||
private static class CmdArgs {
|
||||
@Description("Prints those lombok transformations that require lombok-runtime.jar.")
|
||||
@Mandatory(onlyIfNot = {"create"})
|
||||
|
@ -47,7 +47,7 @@ public class CreateLombokRuntimeApp extends LombokApp {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$Fail.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$Fail.SCL.lombok */
|
||||
private static class Fail extends Exception {
|
||||
Fail(String str) {
|
||||
super(str);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package lombok.core.runtimeDependencies;
|
||||
|
||||
import java.util.List;
|
||||
/* loaded from: com.discord-118105.apk:lombok/core/runtimeDependencies/RuntimeDependencyInfo.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/core/runtimeDependencies/RuntimeDependencyInfo.SCL.lombok */
|
||||
public interface RuntimeDependencyInfo {
|
||||
List<String> getRuntimeDependentsDescriptions();
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ import lombok.javac.Javac;
|
|||
import lombok.javac.LombokOptions;
|
||||
import lombok.javac.apt.LombokProcessor;
|
||||
import lombok.permit.Permit;
|
||||
/* loaded from: com.discord-118105.apk:lombok/delombok/Delombok.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/delombok/Delombok.SCL.lombok */
|
||||
public class Delombok {
|
||||
private Writer presetWriter;
|
||||
private boolean verbose;
|
||||
|
@ -81,7 +81,7 @@ public class Delombok {
|
|||
private File output = null;
|
||||
|
||||
/* renamed from: lombok.delombok.Delombok$1 reason: invalid class name */
|
||||
/* loaded from: com.discord-118105.apk:lombok/delombok/Delombok$1.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/delombok/Delombok$1.SCL.lombok */
|
||||
class AnonymousClass1 extends OutputStream {
|
||||
AnonymousClass1() {
|
||||
}
|
||||
|
@ -91,7 +91,7 @@ public class Delombok {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/delombok/Delombok$CmdArgs.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/delombok/Delombok$CmdArgs.SCL.lombok */
|
||||
private static class CmdArgs {
|
||||
@Excludes({"quiet"})
|
||||
@Description("Print the name of each file as it is being delombok-ed.")
|
||||
|
@ -208,7 +208,7 @@ public class Delombok {
|
|||
}
|
||||
}
|
||||
|
||||
/* loaded from: com.discord-118105.apk:lombok/delombok/Delombok$InvalidFormatOptionException.SCL.lombok */
|
||||
/* loaded from: com.discord-118106.apk:lombok/delombok/Delombok$InvalidFormatOptionException.SCL.lombok */
|
||||
public static class InvalidFormatOptionException extends Exception {
|
||||
public InvalidFormatOptionException(String str) {
|
||||
super(str);
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue