121.11 - Beta (121111)

This commit is contained in:
Juby210 2022-04-01 08:17:34 +00:00
parent e0101a8876
commit ae00e8a1b6
480 changed files with 5313 additions and 4834 deletions

View File

@ -10,8 +10,8 @@ android {
applicationId 'com.discord' applicationId 'com.discord'
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 30 targetSdkVersion 30
versionCode 121110 versionCode 121111
versionName "121.10 - Beta" versionName "121.11 - Beta"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="121110" android:versionName="121.10 - 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="121111" android:versionName="121.11 - 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-sdk android:minSdkVersion="21" android:targetSdkVersion="30"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/> <uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/> <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

View File

@ -4,6 +4,7 @@ import com.discord.api.channel.Channel;
import com.discord.api.channel.ChannelUtils; import com.discord.api.channel.ChannelUtils;
import com.discord.stores.StoreChannels; import com.discord.stores.StoreChannels;
import com.discord.stores.StoreChannelsSelected; import com.discord.stores.StoreChannelsSelected;
import com.discord.stores.StoreExperiments;
import d0.z.d.o; import d0.z.d.o;
import kotlin.jvm.functions.Function0; import kotlin.jvm.functions.Function0;
/* compiled from: ForumUtils.kt */ /* compiled from: ForumUtils.kt */
@ -11,11 +12,13 @@ import kotlin.jvm.functions.Function0;
public final class ForumUtils$observeSelectedPostChannel$1 extends o implements Function0<Channel> { public final class ForumUtils$observeSelectedPostChannel$1 extends o implements Function0<Channel> {
public final /* synthetic */ StoreChannels $storeChannels; public final /* synthetic */ StoreChannels $storeChannels;
public final /* synthetic */ StoreChannelsSelected $storeChannelsSelected; public final /* synthetic */ StoreChannelsSelected $storeChannelsSelected;
public final /* synthetic */ StoreExperiments $storeExperiments;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public ForumUtils$observeSelectedPostChannel$1(StoreChannelsSelected storeChannelsSelected, StoreChannels storeChannels) { public ForumUtils$observeSelectedPostChannel$1(StoreChannelsSelected storeChannelsSelected, StoreExperiments storeExperiments, StoreChannels storeChannels) {
super(0); super(0);
this.$storeChannelsSelected = storeChannelsSelected; this.$storeChannelsSelected = storeChannelsSelected;
this.$storeExperiments = storeExperiments;
this.$storeChannels = storeChannels; this.$storeChannels = storeChannels;
} }
@ -26,8 +29,9 @@ public final class ForumUtils$observeSelectedPostChannel$1 extends o implements
if (selectedChannel == null) { if (selectedChannel == null) {
return null; return null;
} }
boolean canAccessRedesignedForumChannels = ForumUtils.INSTANCE.canAccessRedesignedForumChannels(selectedChannel.i(), this.$storeExperiments);
Channel channel = this.$storeChannels.getChannel(selectedChannel.u()); Channel channel = this.$storeChannels.getChannel(selectedChannel.u());
if (channel == null || !ChannelUtils.q(channel)) { if (!canAccessRedesignedForumChannels || channel == null || !ChannelUtils.q(channel)) {
return null; return null;
} }
return selectedChannel; return selectedChannel;

View File

@ -77,11 +77,14 @@ public final class ForumUtils {
return forumUtils.observeCanAccessRedesignedForumChannels(j, storeExperiments, observationDeck); return forumUtils.observeCanAccessRedesignedForumChannels(j, storeExperiments, observationDeck);
} }
public static /* synthetic */ Observable observeSelectedPostChannel$default(ForumUtils forumUtils, StoreChannels storeChannels, StoreChannelsSelected storeChannelsSelected, ObservationDeck observationDeck, int i, Object obj) { public static /* synthetic */ Observable observeSelectedPostChannel$default(ForumUtils forumUtils, StoreChannels storeChannels, StoreChannelsSelected storeChannelsSelected, StoreExperiments storeExperiments, ObservationDeck observationDeck, int i, Object obj) {
if ((i & 4) != 0) { if ((i & 4) != 0) {
storeExperiments = StoreStream.Companion.getExperiments();
}
if ((i & 8) != 0) {
observationDeck = ObservationDeckProvider.get(); observationDeck = ObservationDeckProvider.get();
} }
return forumUtils.observeSelectedPostChannel(storeChannels, storeChannelsSelected, observationDeck); return forumUtils.observeSelectedPostChannel(storeChannels, storeChannelsSelected, storeExperiments, observationDeck);
} }
public final boolean canAccessRedesignedForumChannels(long j, StoreExperiments storeExperiments) { public final boolean canAccessRedesignedForumChannels(long j, StoreExperiments storeExperiments) {
@ -142,11 +145,12 @@ public final class ForumUtils {
return r; return r;
} }
public final Observable<Channel> observeSelectedPostChannel(StoreChannels storeChannels, StoreChannelsSelected storeChannelsSelected, ObservationDeck observationDeck) { public final Observable<Channel> observeSelectedPostChannel(StoreChannels storeChannels, StoreChannelsSelected storeChannelsSelected, StoreExperiments storeExperiments, ObservationDeck observationDeck) {
m.checkNotNullParameter(storeChannels, "storeChannels"); m.checkNotNullParameter(storeChannels, "storeChannels");
m.checkNotNullParameter(storeChannelsSelected, "storeChannelsSelected"); m.checkNotNullParameter(storeChannelsSelected, "storeChannelsSelected");
m.checkNotNullParameter(storeExperiments, "storeExperiments");
m.checkNotNullParameter(observationDeck, "observationDeck"); m.checkNotNullParameter(observationDeck, "observationDeck");
Observable<Channel> r = ObservationDeck.connectRx$default(observationDeck, new ObservationDeck.UpdateSource[]{storeChannels, storeChannelsSelected}, false, null, null, new ForumUtils$observeSelectedPostChannel$1(storeChannelsSelected, storeChannels), 14, null).r(); Observable<Channel> r = ObservationDeck.connectRx$default(observationDeck, new ObservationDeck.UpdateSource[]{storeChannels, storeChannelsSelected, storeExperiments}, false, null, null, new ForumUtils$observeSelectedPostChannel$1(storeChannelsSelected, storeExperiments, storeChannels), 14, null).r();
m.checkNotNullExpressionValue(r, "observationDeck.connectR… }.distinctUntilChanged()"); m.checkNotNullExpressionValue(r, "observationDeck.connectR… }.distinctUntilChanged()");
return r; return r;
} }

View File

@ -347,7 +347,7 @@ public final class WidgetSettings extends AppFragment implements OnTabSelectedLi
TextView textView = binding.f; TextView textView = binding.f;
m.checkNotNullExpressionValue(textView, "appInfoHeader"); m.checkNotNullExpressionValue(textView, "appInfoHeader");
String string = getString(R.string.app_information); String string = getString(R.string.app_information);
textView.setText(string + " - 121.10 - Beta (121110)"); textView.setText(string + " - 121.11 - Beta (121111)");
binding.B.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this)); binding.B.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE); binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE); binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);

View File

@ -90,7 +90,7 @@ public final class WidgetForumPostStatusViewModel extends d0<ViewState> {
m.checkNotNullParameter(storeForumPostMessages, "storeForumPostMessages"); m.checkNotNullParameter(storeForumPostMessages, "storeForumPostMessages");
m.checkNotNullParameter(storeThreadMessages, "storeThreadMessages"); m.checkNotNullParameter(storeThreadMessages, "storeThreadMessages");
m.checkNotNullParameter(storePermissions, "storePermissions"); m.checkNotNullParameter(storePermissions, "storePermissions");
Observable<StoreState> Y = ForumUtils.observeSelectedPostChannel$default(ForumUtils.INSTANCE, storeChannels, storeChannelsSelected, null, 4, null).Y(new WidgetForumPostStatusViewModel$Companion$observeStoreState$1(storeUser, storeThreadsJoined, storeForumPostMessages, storeThreadMessages, storePermissions)); Observable<StoreState> Y = ForumUtils.observeSelectedPostChannel$default(ForumUtils.INSTANCE, storeChannels, storeChannelsSelected, null, null, 12, null).Y(new WidgetForumPostStatusViewModel$Companion$observeStoreState$1(storeUser, storeThreadsJoined, storeForumPostMessages, storeThreadMessages, storePermissions));
m.checkNotNullExpressionValue(Y, "ForumUtils.observeSelect… }\n }\n }"); m.checkNotNullExpressionValue(Y, "ForumUtils.observeSelect… }\n }\n }");
return Y; return Y;
} }

View File

@ -2,26 +2,29 @@ package com.discord.widgets.status;
import com.discord.api.channel.Channel; import com.discord.api.channel.Channel;
import com.discord.stores.StoreChannels; import com.discord.stores.StoreChannels;
import com.discord.stores.StoreExperiments;
import com.discord.stores.StorePermissions; import com.discord.stores.StorePermissions;
import com.discord.stores.StoreThreadsActiveJoined; import com.discord.stores.StoreThreadsActiveJoined;
import com.discord.utilities.threads.ThreadUtils; import com.discord.utilities.threads.ThreadUtils;
import com.discord.widgets.forums.ForumUtils;
import com.discord.widgets.status.WidgetThreadStatusViewModel; import com.discord.widgets.status.WidgetThreadStatusViewModel;
import d0.z.d.m; import d0.z.d.m;
import j0.k.b; import j0.k.b;
import java.util.Map; import java.util.Map;
import rx.Observable; import rx.Observable;
import rx.functions.Func3; import rx.functions.Func4;
/* compiled from: WidgetThreadStatusViewModel.kt */ /* compiled from: WidgetThreadStatusViewModel.kt */
/* loaded from: classes2.dex */ /* loaded from: classes2.dex */
public final class WidgetThreadStatusViewModel$Companion$observeStoreState$1<T, R> implements b<Channel, Observable<? extends WidgetThreadStatusViewModel.StoreState>> { public final class WidgetThreadStatusViewModel$Companion$observeStoreState$1<T, R> implements b<Channel, Observable<? extends WidgetThreadStatusViewModel.StoreState>> {
public final /* synthetic */ StoreChannels $storeChannels; public final /* synthetic */ StoreChannels $storeChannels;
public final /* synthetic */ StoreExperiments $storeExperiments;
public final /* synthetic */ StorePermissions $storePermissions; public final /* synthetic */ StorePermissions $storePermissions;
public final /* synthetic */ StoreThreadsActiveJoined $storeThreadsActiveJoined; public final /* synthetic */ StoreThreadsActiveJoined $storeThreadsActiveJoined;
/* compiled from: WidgetThreadStatusViewModel.kt */ /* compiled from: WidgetThreadStatusViewModel.kt */
/* renamed from: com.discord.widgets.status.WidgetThreadStatusViewModel$Companion$observeStoreState$1$1 reason: invalid class name */ /* renamed from: com.discord.widgets.status.WidgetThreadStatusViewModel$Companion$observeStoreState$1$1 reason: invalid class name */
/* loaded from: classes2.dex */ /* loaded from: classes2.dex */
public static final class AnonymousClass1<T1, T2, T3, R> implements Func3<Map<Long, ? extends Map<Long, ? extends StoreThreadsActiveJoined.ActiveJoinedThread>>, Long, Channel, WidgetThreadStatusViewModel.StoreState> { public static final class AnonymousClass1<T1, T2, T3, T4, R> implements Func4<Map<Long, ? extends Map<Long, ? extends StoreThreadsActiveJoined.ActiveJoinedThread>>, Long, Channel, Boolean, WidgetThreadStatusViewModel.StoreState> {
public final /* synthetic */ Channel $selectedChannel; public final /* synthetic */ Channel $selectedChannel;
public AnonymousClass1(Channel channel) { public AnonymousClass1(Channel channel) {
@ -29,29 +32,32 @@ public final class WidgetThreadStatusViewModel$Companion$observeStoreState$1<T,
} }
/* renamed from: call reason: avoid collision after fix types in other method */ /* renamed from: call reason: avoid collision after fix types in other method */
public final WidgetThreadStatusViewModel.StoreState call2(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Long l, Channel channel) { public final WidgetThreadStatusViewModel.StoreState call2(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Long l, Channel channel, Boolean bool) {
ThreadUtils threadUtils = ThreadUtils.INSTANCE; ThreadUtils threadUtils = ThreadUtils.INSTANCE;
Channel channel2 = this.$selectedChannel; Channel channel2 = this.$selectedChannel;
m.checkNotNullExpressionValue(channel2, "selectedChannel"); m.checkNotNullExpressionValue(channel2, "selectedChannel");
boolean canUnarchiveThread = threadUtils.canUnarchiveThread(channel2, l); boolean canUnarchiveThread = threadUtils.canUnarchiveThread(channel2, l);
boolean isThreadModerator = threadUtils.isThreadModerator(Long.valueOf(l != null ? l.longValue() : 0L)); boolean isThreadModerator = threadUtils.isThreadModerator(Long.valueOf(l != null ? l.longValue() : 0L));
m.checkNotNullExpressionValue(map, "activeJoinedThreads"); m.checkNotNullExpressionValue(map, "activeJoinedThreads");
return new WidgetThreadStatusViewModel.StoreState(map, this.$selectedChannel, channel, canUnarchiveThread, isThreadModerator); Channel channel3 = this.$selectedChannel;
m.checkNotNullExpressionValue(bool, "canAccessRedesignedForumChannels");
return new WidgetThreadStatusViewModel.StoreState(map, channel3, channel, canUnarchiveThread, isThreadModerator, bool.booleanValue());
} }
@Override // rx.functions.Func3 @Override // rx.functions.Func4
public /* bridge */ /* synthetic */ WidgetThreadStatusViewModel.StoreState call(Map<Long, ? extends Map<Long, ? extends StoreThreadsActiveJoined.ActiveJoinedThread>> map, Long l, Channel channel) { public /* bridge */ /* synthetic */ WidgetThreadStatusViewModel.StoreState call(Map<Long, ? extends Map<Long, ? extends StoreThreadsActiveJoined.ActiveJoinedThread>> map, Long l, Channel channel, Boolean bool) {
return call2((Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>>) map, l, channel); return call2((Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>>) map, l, channel, bool);
} }
} }
public WidgetThreadStatusViewModel$Companion$observeStoreState$1(StoreThreadsActiveJoined storeThreadsActiveJoined, StorePermissions storePermissions, StoreChannels storeChannels) { public WidgetThreadStatusViewModel$Companion$observeStoreState$1(StoreThreadsActiveJoined storeThreadsActiveJoined, StorePermissions storePermissions, StoreChannels storeChannels, StoreExperiments storeExperiments) {
this.$storeThreadsActiveJoined = storeThreadsActiveJoined; this.$storeThreadsActiveJoined = storeThreadsActiveJoined;
this.$storePermissions = storePermissions; this.$storePermissions = storePermissions;
this.$storeChannels = storeChannels; this.$storeChannels = storeChannels;
this.$storeExperiments = storeExperiments;
} }
public final Observable<? extends WidgetThreadStatusViewModel.StoreState> call(Channel channel) { public final Observable<? extends WidgetThreadStatusViewModel.StoreState> call(Channel channel) {
return Observable.i(this.$storeThreadsActiveJoined.observeActiveJoinedThreadsForGuild(channel.i()), this.$storePermissions.observePermissionsForChannel(channel.k()), this.$storeChannels.observeChannel(channel.u()), new AnonymousClass1(channel)).r(); return Observable.h(this.$storeThreadsActiveJoined.observeActiveJoinedThreadsForGuild(channel.i()), this.$storePermissions.observePermissionsForChannel(channel.k()), this.$storeChannels.observeChannel(channel.u()), ForumUtils.observeCanAccessRedesignedForumChannels$default(ForumUtils.INSTANCE, channel.i(), this.$storeExperiments, null, 4, null), new AnonymousClass1(channel)).r();
} }
} }

View File

@ -9,6 +9,7 @@ import com.discord.api.thread.ThreadMetadata;
import com.discord.restapi.RestAPIParams; import com.discord.restapi.RestAPIParams;
import com.discord.stores.StoreChannels; import com.discord.stores.StoreChannels;
import com.discord.stores.StoreChannelsSelected; import com.discord.stores.StoreChannelsSelected;
import com.discord.stores.StoreExperiments;
import com.discord.stores.StorePermissions; import com.discord.stores.StorePermissions;
import com.discord.stores.StoreStream; import com.discord.stores.StoreStream;
import com.discord.stores.StoreThreadsActiveJoined; import com.discord.stores.StoreThreadsActiveJoined;
@ -65,15 +66,15 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
this(); this();
} }
private final Observable<StoreState> observeStoreState(StoreThreadsActiveJoined storeThreadsActiveJoined, StoreChannelsSelected storeChannelsSelected, StoreChannels storeChannels, StorePermissions storePermissions) { private final Observable<StoreState> observeStoreState(StoreThreadsActiveJoined storeThreadsActiveJoined, StoreChannelsSelected storeChannelsSelected, StoreChannels storeChannels, StorePermissions storePermissions, StoreExperiments storeExperiments) {
Observable<R> G = storeChannelsSelected.observeSelectedChannel().y(ObservableExtensionsKt$filterNull$1.INSTANCE).G(ObservableExtensionsKt$filterNull$2.INSTANCE); Observable<R> G = storeChannelsSelected.observeSelectedChannel().y(ObservableExtensionsKt$filterNull$1.INSTANCE).G(ObservableExtensionsKt$filterNull$2.INSTANCE);
m.checkNotNullExpressionValue(G, "filter { it != null }.map { it!! }"); m.checkNotNullExpressionValue(G, "filter { it != null }.map { it!! }");
Observable<StoreState> Y = G.Y(new WidgetThreadStatusViewModel$Companion$observeStoreState$1(storeThreadsActiveJoined, storePermissions, storeChannels)); Observable<StoreState> Y = G.Y(new WidgetThreadStatusViewModel$Companion$observeStoreState$1(storeThreadsActiveJoined, storePermissions, storeChannels, storeExperiments));
m.checkNotNullExpressionValue(Y, "storeChannelsSelected.ob…ntilChanged()\n }"); m.checkNotNullExpressionValue(Y, "storeChannelsSelected.ob…ntilChanged()\n }");
return Y; return Y;
} }
public static /* synthetic */ Observable observeStoreState$default(Companion companion, StoreThreadsActiveJoined storeThreadsActiveJoined, StoreChannelsSelected storeChannelsSelected, StoreChannels storeChannels, StorePermissions storePermissions, int i, Object obj) { public static /* synthetic */ Observable observeStoreState$default(Companion companion, StoreThreadsActiveJoined storeThreadsActiveJoined, StoreChannelsSelected storeChannelsSelected, StoreChannels storeChannels, StorePermissions storePermissions, StoreExperiments storeExperiments, int i, Object obj) {
if ((i & 1) != 0) { if ((i & 1) != 0) {
storeThreadsActiveJoined = StoreStream.Companion.getThreadsActiveJoined(); storeThreadsActiveJoined = StoreStream.Companion.getThreadsActiveJoined();
} }
@ -86,7 +87,10 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
if ((i & 8) != 0) { if ((i & 8) != 0) {
storePermissions = StoreStream.Companion.getPermissions(); storePermissions = StoreStream.Companion.getPermissions();
} }
return companion.observeStoreState(storeThreadsActiveJoined, storeChannelsSelected, storeChannels, storePermissions); if ((i & 16) != 0) {
storeExperiments = StoreStream.Companion.getExperiments();
}
return companion.observeStoreState(storeThreadsActiveJoined, storeChannelsSelected, storeChannels, storePermissions, storeExperiments);
} }
} }
@ -204,23 +208,25 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
/* loaded from: classes2.dex */ /* loaded from: classes2.dex */
public static final class StoreState { public static final class StoreState {
private final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> activeJoinedThreads; private final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> activeJoinedThreads;
private final boolean canAccessRedesignedForumChannels;
private final boolean canArchive; private final boolean canArchive;
private final boolean isModerator; private final boolean isModerator;
private final Channel parentChannel; private final Channel parentChannel;
private final Channel selectedChannel; private final Channel selectedChannel;
/* JADX WARN: Multi-variable type inference failed */ /* JADX WARN: Multi-variable type inference failed */
public StoreState(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Channel channel, Channel channel2, boolean z2, boolean z3) { public StoreState(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Channel channel, Channel channel2, boolean z2, boolean z3, boolean z4) {
m.checkNotNullParameter(map, "activeJoinedThreads"); m.checkNotNullParameter(map, "activeJoinedThreads");
this.activeJoinedThreads = map; this.activeJoinedThreads = map;
this.selectedChannel = channel; this.selectedChannel = channel;
this.parentChannel = channel2; this.parentChannel = channel2;
this.canArchive = z2; this.canArchive = z2;
this.isModerator = z3; this.isModerator = z3;
this.canAccessRedesignedForumChannels = z4;
} }
/* JADX WARN: Multi-variable type inference failed */ /* JADX WARN: Multi-variable type inference failed */
public static /* synthetic */ StoreState copy$default(StoreState storeState, Map map, Channel channel, Channel channel2, boolean z2, boolean z3, int i, Object obj) { public static /* synthetic */ StoreState copy$default(StoreState storeState, Map map, Channel channel, Channel channel2, boolean z2, boolean z3, boolean z4, int i, Object obj) {
if ((i & 1) != 0) { if ((i & 1) != 0) {
map = storeState.activeJoinedThreads; map = storeState.activeJoinedThreads;
} }
@ -236,7 +242,10 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
if ((i & 16) != 0) { if ((i & 16) != 0) {
z3 = storeState.isModerator; z3 = storeState.isModerator;
} }
return storeState.copy(map, channel, channel2, z2, z3); if ((i & 32) != 0) {
z4 = storeState.canAccessRedesignedForumChannels;
}
return storeState.copy(map, channel, channel2, z2, z3, z4);
} }
public final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> component1() { public final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> component1() {
@ -259,9 +268,13 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
return this.isModerator; return this.isModerator;
} }
public final StoreState copy(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Channel channel, Channel channel2, boolean z2, boolean z3) { public final boolean component6() {
return this.canAccessRedesignedForumChannels;
}
public final StoreState copy(Map<Long, ? extends Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> map, Channel channel, Channel channel2, boolean z2, boolean z3, boolean z4) {
m.checkNotNullParameter(map, "activeJoinedThreads"); m.checkNotNullParameter(map, "activeJoinedThreads");
return new StoreState(map, channel, channel2, z2, z3); return new StoreState(map, channel, channel2, z2, z3, z4);
} }
public boolean equals(Object obj) { public boolean equals(Object obj) {
@ -272,13 +285,17 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
return false; return false;
} }
StoreState storeState = (StoreState) obj; StoreState storeState = (StoreState) obj;
return m.areEqual(this.activeJoinedThreads, storeState.activeJoinedThreads) && m.areEqual(this.selectedChannel, storeState.selectedChannel) && m.areEqual(this.parentChannel, storeState.parentChannel) && this.canArchive == storeState.canArchive && this.isModerator == storeState.isModerator; return m.areEqual(this.activeJoinedThreads, storeState.activeJoinedThreads) && m.areEqual(this.selectedChannel, storeState.selectedChannel) && m.areEqual(this.parentChannel, storeState.parentChannel) && this.canArchive == storeState.canArchive && this.isModerator == storeState.isModerator && this.canAccessRedesignedForumChannels == storeState.canAccessRedesignedForumChannels;
} }
public final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> getActiveJoinedThreads() { public final Map<Long, Map<Long, StoreThreadsActiveJoined.ActiveJoinedThread>> getActiveJoinedThreads() {
return this.activeJoinedThreads; return this.activeJoinedThreads;
} }
public final boolean getCanAccessRedesignedForumChannels() {
return this.canAccessRedesignedForumChannels;
}
public final boolean getCanArchive() { public final boolean getCanArchive() {
return this.canArchive; return this.canArchive;
} }
@ -312,10 +329,18 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
int i6 = z2 ? 1 : 0; int i6 = z2 ? 1 : 0;
int i7 = (i2 + i4) * 31; int i7 = (i2 + i4) * 31;
boolean z3 = this.isModerator; boolean z3 = this.isModerator;
if (!z3) { if (z3) {
i3 = z3 ? 1 : 0; z3 = true;
} }
return i7 + i3; int i8 = z3 ? 1 : 0;
int i9 = z3 ? 1 : 0;
int i10 = z3 ? 1 : 0;
int i11 = (i7 + i8) * 31;
boolean z4 = this.canAccessRedesignedForumChannels;
if (!z4) {
i3 = z4 ? 1 : 0;
}
return i11 + i3;
} }
public final boolean isModerator() { public final boolean isModerator() {
@ -332,7 +357,9 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
R.append(", canArchive="); R.append(", canArchive=");
R.append(this.canArchive); R.append(this.canArchive);
R.append(", isModerator="); R.append(", isModerator=");
return a.M(R, this.isModerator, ")"); R.append(this.isModerator);
R.append(", canAccessRedesignedForumChannels=");
return a.M(R, this.canAccessRedesignedForumChannels, ")");
} }
} }
@ -429,7 +456,7 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
} }
public /* synthetic */ WidgetThreadStatusViewModel(Observable observable, int i, DefaultConstructorMarker defaultConstructorMarker) { public /* synthetic */ WidgetThreadStatusViewModel(Observable observable, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? Companion.observeStoreState$default(Companion, null, null, null, null, 15, null) : observable); this((i & 1) != 0 ? Companion.observeStoreState$default(Companion, null, null, null, null, null, 31, null) : observable);
} }
public static final /* synthetic */ void access$emitError(WidgetThreadStatusViewModel widgetThreadStatusViewModel, int i) { public static final /* synthetic */ void access$emitError(WidgetThreadStatusViewModel widgetThreadStatusViewModel, int i) {
@ -469,7 +496,7 @@ public final class WidgetThreadStatusViewModel extends d0<ViewState> {
boolean z3 = activeJoinedThread != null; boolean z3 = activeJoinedThread != null;
if (selectedChannel == null || !ChannelUtils.F(selectedChannel)) { if (selectedChannel == null || !ChannelUtils.F(selectedChannel)) {
status = Status.Hide.INSTANCE; status = Status.Hide.INSTANCE;
} else if (parentChannel == null || !ChannelUtils.q(parentChannel)) { } else if (parentChannel == null || !ChannelUtils.q(parentChannel) || !storeState.getCanAccessRedesignedForumChannels()) {
ThreadMetadata B = selectedChannel.B(); ThreadMetadata B = selectedChannel.B();
if (B == null || !B.b()) { if (B == null || !B.b()) {
status = z3 ? Status.Hide.INSTANCE : Status.Unjoined.INSTANCE; status = z3 ? Status.Hide.INSTANCE : Status.Unjoined.INSTANCE;

View File

@ -10,7 +10,7 @@ import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/CmdReader.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/CmdReader.SCL.lombok */
public class CmdReader<T> { public class CmdReader<T> {
private final Class<T> settingsDescriptor; private final Class<T> settingsDescriptor;
private final List<ParseItem> items = Collections.unmodifiableList(init()); private final List<ParseItem> items = Collections.unmodifiableList(init());
@ -19,7 +19,7 @@ public class CmdReader<T> {
private static final int SCREEN_WIDTH = 72; private static final int SCREEN_WIDTH = 72;
/* renamed from: com.zwitserloot.cmdreader.CmdReader$1State reason: invalid class name */ /* renamed from: com.zwitserloot.cmdreader.CmdReader$1State reason: invalid class name */
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/CmdReader$1State.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/CmdReader$1State.SCL.lombok */
class C1State { class C1State {
List<ParseItem> used = new ArrayList(); List<ParseItem> used = new ArrayList();
final /* synthetic */ Object val$obj; final /* synthetic */ Object val$obj;

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Description.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Description.SCL.lombok */
public @interface Description { public @interface Description {
String value(); String value();
} }

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Excludes.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Excludes.SCL.lombok */
public @interface Excludes { public @interface Excludes {
String[] value(); String[] value();
} }

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/FullName.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/FullName.SCL.lombok */
public @interface FullName { public @interface FullName {
String value() default ""; String value() default "";
} }

View File

@ -1,5 +1,5 @@
package com.zwitserloot.cmdreader; package com.zwitserloot.cmdreader;
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/InvalidCommandLineException.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/InvalidCommandLineException.SCL.lombok */
public class InvalidCommandLineException extends Exception { public class InvalidCommandLineException extends Exception {
private static final long serialVersionUID = 20080509; private static final long serialVersionUID = 20080509;

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Mandatory.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Mandatory.SCL.lombok */
public @interface Mandatory { public @interface Mandatory {
String[] onlyIf() default {}; String[] onlyIf() default {};

View File

@ -18,7 +18,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Queue; import java.util.Queue;
import java.util.Set; import java.util.Set;
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/ParseItem.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/ParseItem.SCL.lombok */
class ParseItem { class ParseItem {
private final Field field; private final Field field;
private final boolean isCollection; private final boolean isCollection;

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Requires.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Requires.SCL.lombok */
public @interface Requires { public @interface Requires {
String[] value(); String[] value();
} }

View File

@ -8,6 +8,6 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Sequential.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Sequential.SCL.lombok */
public @interface Sequential { public @interface Sequential {
} }

View File

@ -8,7 +8,7 @@ import java.lang.annotation.Target;
@Target({ElementType.FIELD}) @Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Documented @Documented
/* loaded from: com.discord-121110.apk:com/zwitserloot/cmdreader/Shorthand.SCL.lombok */ /* loaded from: com.discord-121111.apk:com/zwitserloot/cmdreader/Shorthand.SCL.lombok */
public @interface Shorthand { public @interface Shorthand {
String[] value() default {}; String[] value() default {};
} }

View File

@ -5,7 +5,7 @@ import kotlin.jvm.internal.Intrinsics;
import kotlinx.coroutines.debug.internal.DebugProbesImpl; import kotlinx.coroutines.debug.internal.DebugProbesImpl;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/* compiled from: DebugProbes.kt */ /* compiled from: DebugProbes.kt */
/* loaded from: com.discord-121110.apk:DebugProbesKt.bin */ /* loaded from: com.discord-121111.apk:DebugProbesKt.bin */
public final class DebugProbesKt { public final class DebugProbesKt {
@NotNull @NotNull
public static final <T> Continuation<T> probeCoroutineCreated(@NotNull Continuation<? super T> continuation) { public static final <T> Continuation<T> probeCoroutineCreated(@NotNull Continuation<? super T> continuation) {

View File

@ -5,11 +5,11 @@ import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes; import org.objectweb.asm.Opcodes;
import org.objectweb.asm.commons.JSRInlinerAdapter; import org.objectweb.asm.commons.JSRInlinerAdapter;
/* loaded from: com.discord-121110.apk:lombok/bytecode/AsmUtil.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/AsmUtil.SCL.lombok */
class AsmUtil { class AsmUtil {
/* renamed from: lombok.bytecode.AsmUtil$1 reason: invalid class name */ /* renamed from: lombok.bytecode.AsmUtil$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/bytecode/AsmUtil$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/AsmUtil$1.SCL.lombok */
class AnonymousClass1 extends ClassVisitor { class AnonymousClass1 extends ClassVisitor {
AnonymousClass1(int i, ClassVisitor classVisitor) { AnonymousClass1(int i, ClassVisitor classVisitor) {
super(i, classVisitor); super(i, classVisitor);

View File

@ -3,7 +3,7 @@ package lombok.bytecode;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/bytecode/ClassFileMetaData.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/ClassFileMetaData.SCL.lombok */
public class ClassFileMetaData { public class ClassFileMetaData {
private static final byte UTF8 = 1; private static final byte UTF8 = 1;
private static final byte INTEGER = 3; private static final byte INTEGER = 3;

View File

@ -2,7 +2,7 @@ package lombok.bytecode;
import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassWriter; import org.objectweb.asm.ClassWriter;
/* loaded from: com.discord-121110.apk:lombok/bytecode/FixedClassWriter.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/FixedClassWriter.SCL.lombok */
class FixedClassWriter extends ClassWriter { class FixedClassWriter extends ClassWriter {
FixedClassWriter(ClassReader classReader, int i) { FixedClassWriter(ClassReader classReader, int i) {
super(classReader, i); super(classReader, i);

View File

@ -11,10 +11,10 @@ import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import lombok.core.LombokApp; import lombok.core.LombokApp;
/* loaded from: com.discord-121110.apk:lombok/bytecode/PoolConstantsApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PoolConstantsApp.SCL.lombok */
public class PoolConstantsApp extends LombokApp { public class PoolConstantsApp extends LombokApp {
/* loaded from: com.discord-121110.apk:lombok/bytecode/PoolConstantsApp$CmdArgs.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PoolConstantsApp$CmdArgs.SCL.lombok */
public static class CmdArgs { public static class CmdArgs {
@Mandatory @Mandatory
@Description("paths to class files to be printed. If a directory is named, all files (recursively) in that directory will be printed.") @Description("paths to class files to be printed. If a directory is named, all files (recursively) in that directory will be printed.")

View File

@ -18,10 +18,10 @@ import java.util.List;
import lombok.core.DiagnosticsReceiver; import lombok.core.DiagnosticsReceiver;
import lombok.core.LombokApp; import lombok.core.LombokApp;
import lombok.core.PostCompiler; import lombok.core.PostCompiler;
/* loaded from: com.discord-121110.apk:lombok/bytecode/PostCompilerApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PostCompilerApp.SCL.lombok */
public class PostCompilerApp extends LombokApp { public class PostCompilerApp extends LombokApp {
/* loaded from: com.discord-121110.apk:lombok/bytecode/PostCompilerApp$CmdArgs.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PostCompilerApp$CmdArgs.SCL.lombok */
public static class CmdArgs { public static class CmdArgs {
@Mandatory @Mandatory
@Description("paths to class files to be converted. If a directory is named, all files (recursively) in that directory will be converted.") @Description("paths to class files to be converted. If a directory is named, all files (recursively) in that directory will be converted.")

View File

@ -7,11 +7,11 @@ import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor; import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes; import org.objectweb.asm.Opcodes;
/* loaded from: com.discord-121110.apk:lombok/bytecode/PreventNullAnalysisRemover.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PreventNullAnalysisRemover.SCL.lombok */
public class PreventNullAnalysisRemover implements PostCompilerTransformation { public class PreventNullAnalysisRemover implements PostCompilerTransformation {
/* renamed from: lombok.bytecode.PreventNullAnalysisRemover$1 reason: invalid class name */ /* renamed from: lombok.bytecode.PreventNullAnalysisRemover$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/bytecode/PreventNullAnalysisRemover$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PreventNullAnalysisRemover$1.SCL.lombok */
class AnonymousClass1 extends ClassVisitor { class AnonymousClass1 extends ClassVisitor {
private final /* synthetic */ AtomicBoolean val$changesMade; 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 */ /* renamed from: lombok.bytecode.PreventNullAnalysisRemover$1PreventNullAnalysisVisitor reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/bytecode/PreventNullAnalysisRemover$1PreventNullAnalysisVisitor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/PreventNullAnalysisRemover$1PreventNullAnalysisVisitor.SCL.lombok */
class C1PreventNullAnalysisVisitor extends MethodVisitor { class C1PreventNullAnalysisVisitor extends MethodVisitor {
private final /* synthetic */ AtomicBoolean val$changesMade; private final /* synthetic */ AtomicBoolean val$changesMade;

View File

@ -10,11 +10,11 @@ import org.objectweb.asm.Handle;
import org.objectweb.asm.Label; import org.objectweb.asm.Label;
import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes; import org.objectweb.asm.Opcodes;
/* loaded from: com.discord-121110.apk:lombok/bytecode/SneakyThrowsRemover.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/SneakyThrowsRemover.SCL.lombok */
public class SneakyThrowsRemover implements PostCompilerTransformation { public class SneakyThrowsRemover implements PostCompilerTransformation {
/* renamed from: lombok.bytecode.SneakyThrowsRemover$1 reason: invalid class name */ /* renamed from: lombok.bytecode.SneakyThrowsRemover$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/bytecode/SneakyThrowsRemover$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/SneakyThrowsRemover$1.SCL.lombok */
class AnonymousClass1 extends ClassVisitor { class AnonymousClass1 extends ClassVisitor {
private final /* synthetic */ DiagnosticsReceiver val$diagnostics; private final /* synthetic */ DiagnosticsReceiver val$diagnostics;
private final /* synthetic */ AtomicBoolean val$changesMade; 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 */ /* renamed from: lombok.bytecode.SneakyThrowsRemover$1SneakyThrowsRemoverVisitor reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/bytecode/SneakyThrowsRemover$1SneakyThrowsRemoverVisitor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/bytecode/SneakyThrowsRemover$1SneakyThrowsRemoverVisitor.SCL.lombok */
class C1SneakyThrowsRemoverVisitor extends MethodVisitor { class C1SneakyThrowsRemoverVisitor extends MethodVisitor {
private boolean methodInsnQueued = false; private boolean methodInsnQueued = false;
private final /* synthetic */ DiagnosticsReceiver val$diagnostics; private final /* synthetic */ DiagnosticsReceiver val$diagnostics;

View File

@ -20,7 +20,7 @@ import lombok.core.LombokNode;
import lombok.core.configuration.ConfigurationKey; import lombok.core.configuration.ConfigurationKey;
import lombok.core.debug.HistogramTracker; import lombok.core.debug.HistogramTracker;
import lombok.permit.Permit; import lombok.permit.Permit;
/* loaded from: com.discord-121110.apk:lombok/core/AST.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AST.SCL.lombok */
public abstract class AST<A extends AST<A, L, N>, L extends LombokNode<A, L, N>, N> { public abstract class AST<A extends AST<A, L, N>, L extends LombokNode<A, L, N>, N> {
private L top; private L top;
private final String fileName; 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 HistogramTracker configTracker;
private static final ConcurrentMap<Class<?>, FieldAccess[]> fieldsOfASTClasses; private static final ConcurrentMap<Class<?>, FieldAccess[]> fieldsOfASTClasses;
/* loaded from: com.discord-121110.apk:lombok/core/AST$FieldAccess.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AST$FieldAccess.SCL.lombok */
protected static class FieldAccess { protected static class FieldAccess {
public final Field field; public final Field field;
public final int dim; 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-121110.apk:lombok/core/AST$Kind.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AST$Kind.SCL.lombok */
public enum Kind { public enum Kind {
COMPILATION_UNIT, COMPILATION_UNIT,
TYPE, TYPE,

View File

@ -6,11 +6,11 @@ import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/AgentLauncher.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AgentLauncher.SCL.lombok */
public class AgentLauncher { public class AgentLauncher {
private static final List<AgentInfo> AGENTS = Collections.unmodifiableList(Arrays.asList(new EclipsePatcherInfo(null))); private static final List<AgentInfo> AGENTS = Collections.unmodifiableList(Arrays.asList(new EclipsePatcherInfo(null)));
/* loaded from: com.discord-121110.apk:lombok/core/AgentLauncher$AgentInfo.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AgentLauncher$AgentInfo.SCL.lombok */
private static abstract class AgentInfo { private static abstract class AgentInfo {
private AgentInfo() { private AgentInfo() {
} }
@ -36,12 +36,12 @@ public class AgentLauncher {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/AgentLauncher$AgentLaunchable.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AgentLauncher$AgentLaunchable.SCL.lombok */
public interface AgentLaunchable { public interface AgentLaunchable {
void runAgent(String str, Instrumentation instrumentation, boolean z2, Class<?> cls) throws Exception; void runAgent(String str, Instrumentation instrumentation, boolean z2, Class<?> cls) throws Exception;
} }
/* loaded from: com.discord-121110.apk:lombok/core/AgentLauncher$EclipsePatcherInfo.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AgentLauncher$EclipsePatcherInfo.SCL.lombok */
private static class EclipsePatcherInfo extends AgentInfo { private static class EclipsePatcherInfo extends AgentInfo {
private EclipsePatcherInfo() { private EclipsePatcherInfo() {
super(null); super(null);

View File

@ -6,6 +6,6 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
@Target({ElementType.TYPE}) @Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
/* loaded from: com.discord-121110.apk:lombok/core/AlreadyHandledAnnotations.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AlreadyHandledAnnotations.SCL.lombok */
public @interface AlreadyHandledAnnotations { public @interface AlreadyHandledAnnotations {
} }

View File

@ -24,13 +24,13 @@ import javax.tools.Diagnostic;
import lombok.patcher.ClassRootFinder; import lombok.patcher.ClassRootFinder;
import lombok.permit.Permit; import lombok.permit.Permit;
@SupportedAnnotationTypes({"*"}) @SupportedAnnotationTypes({"*"})
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationProcessor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationProcessor.SCL.lombok */
public class AnnotationProcessor extends AbstractProcessor { public class AnnotationProcessor extends AbstractProcessor {
private final List<ProcessorDescriptor> registered = Arrays.asList(new JavacDescriptor(), new EcjDescriptor()); private final List<ProcessorDescriptor> registered = Arrays.asList(new JavacDescriptor(), new EcjDescriptor());
private final List<ProcessorDescriptor> active = new ArrayList(); private final List<ProcessorDescriptor> active = new ArrayList();
private final List<String> delayedWarnings = new ArrayList(); private final List<String> delayedWarnings = new ArrayList();
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationProcessor$EcjDescriptor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationProcessor$EcjDescriptor.SCL.lombok */
static class EcjDescriptor extends ProcessorDescriptor { static class EcjDescriptor extends ProcessorDescriptor {
EcjDescriptor() { EcjDescriptor() {
} }
@ -51,7 +51,7 @@ public class AnnotationProcessor extends AbstractProcessor {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationProcessor$JavacDescriptor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationProcessor$JavacDescriptor.SCL.lombok */
static class JavacDescriptor extends ProcessorDescriptor { static class JavacDescriptor extends ProcessorDescriptor {
private Processor processor; private Processor processor;
@ -105,7 +105,7 @@ public class AnnotationProcessor extends AbstractProcessor {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationProcessor$ProcessorDescriptor.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationProcessor$ProcessorDescriptor.SCL.lombok */
static abstract class ProcessorDescriptor { static abstract class ProcessorDescriptor {
ProcessorDescriptor() { ProcessorDescriptor() {
} }

View File

@ -13,7 +13,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import lombok.core.AST; import lombok.core.AST;
import lombok.permit.Permit; import lombok.permit.Permit;
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationValues.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationValues.SCL.lombok */
public class AnnotationValues<A extends Annotation> { public class AnnotationValues<A extends Annotation> {
private final Class<A> type; private final Class<A> type;
private final Map<String, AnnotationValue> values; private final Map<String, AnnotationValue> values;
@ -21,7 +21,7 @@ public class AnnotationValues<A extends Annotation> {
private A cachedInstance = null; private A cachedInstance = null;
/* renamed from: lombok.core.AnnotationValues$1 reason: invalid class name */ /* renamed from: lombok.core.AnnotationValues$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationValues$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationValues$1.SCL.lombok */
class AnonymousClass1 implements InvocationHandler { class AnonymousClass1 implements InvocationHandler {
AnonymousClass1() { AnonymousClass1() {
} }
@ -85,7 +85,7 @@ public class AnnotationValues<A extends Annotation> {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationValues$AnnotationValue.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationValues$AnnotationValue.SCL.lombok */
public static class AnnotationValue { public static class AnnotationValue {
public final List<String> raws; public final List<String> raws;
public final List<Object> valueGuesses; public final List<Object> valueGuesses;
@ -118,7 +118,7 @@ public class AnnotationValues<A extends Annotation> {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/AnnotationValues$AnnotationValueDecodeFail.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/AnnotationValues$AnnotationValueDecodeFail.SCL.lombok */
public static class AnnotationValueDecodeFail extends RuntimeException { public static class AnnotationValueDecodeFail extends RuntimeException {
private static final long serialVersionUID = 1; private static final long serialVersionUID = 1;
public final int idx; public final int idx;

View File

@ -1,5 +1,5 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/Augments.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/Augments.SCL.lombok */
public final class Augments { public final class Augments {
public static final FieldAugment<ClassLoader, Boolean> ClassLoader_lombokAlreadyAddedTo = FieldAugment.augment(ClassLoader.class, Boolean.TYPE, "lombok$alreadyAddedTo"); public static final FieldAugment<ClassLoader, Boolean> ClassLoader_lombokAlreadyAddedTo = FieldAugment.augment(ClassLoader.class, Boolean.TYPE, "lombok$alreadyAddedTo");

View File

@ -1,5 +1,5 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/ClassLiteral.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/ClassLiteral.SCL.lombok */
public class ClassLiteral { public class ClassLiteral {
private final String className; private final String className;

View File

@ -3,11 +3,11 @@ package lombok.core;
import java.util.Iterator; import java.util.Iterator;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ConcurrentMap;
/* loaded from: com.discord-121110.apk:lombok/core/CleanupRegistry.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/CleanupRegistry.SCL.lombok */
public class CleanupRegistry { public class CleanupRegistry {
private final ConcurrentMap<CleanupKey, CleanupTask> tasks = new ConcurrentHashMap(); private final ConcurrentMap<CleanupKey, CleanupTask> tasks = new ConcurrentHashMap();
/* loaded from: com.discord-121110.apk:lombok/core/CleanupRegistry$CleanupKey.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/CleanupRegistry$CleanupKey.SCL.lombok */
private static final class CleanupKey { private static final class CleanupKey {
private final String key; private final String key;
private final Object target; private final Object target;

View File

@ -1,5 +1,5 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/CleanupTask.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/CleanupTask.SCL.lombok */
public interface CleanupTask { public interface CleanupTask {
void cleanup(); void cleanup();
} }

View File

@ -1,10 +1,10 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/DiagnosticsReceiver.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/DiagnosticsReceiver.SCL.lombok */
public interface DiagnosticsReceiver { public interface DiagnosticsReceiver {
public static final DiagnosticsReceiver CONSOLE = new AnonymousClass1(); public static final DiagnosticsReceiver CONSOLE = new AnonymousClass1();
/* renamed from: lombok.core.DiagnosticsReceiver$1 reason: invalid class name */ /* renamed from: lombok.core.DiagnosticsReceiver$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/DiagnosticsReceiver$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/DiagnosticsReceiver$1.SCL.lombok */
class AnonymousClass1 implements DiagnosticsReceiver { class AnonymousClass1 implements DiagnosticsReceiver {
AnonymousClass1() { AnonymousClass1() {
} }

View File

@ -8,10 +8,10 @@ import java.lang.reflect.Modifier;
import java.util.Map; import java.util.Map;
import java.util.WeakHashMap; import java.util.WeakHashMap;
import lombok.permit.Permit; import lombok.permit.Permit;
/* loaded from: com.discord-121110.apk:lombok/core/FieldAugment.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/FieldAugment.SCL.lombok */
public abstract class FieldAugment<T, F> { public abstract class FieldAugment<T, F> {
/* loaded from: com.discord-121110.apk:lombok/core/FieldAugment$MapFieldAugment.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/FieldAugment$MapFieldAugment.SCL.lombok */
private static class MapFieldAugment<T, F> extends FieldAugment<T, F> { private static class MapFieldAugment<T, F> extends FieldAugment<T, F> {
final Map<T, Object> values = new WeakHashMap(); final Map<T, Object> values = new WeakHashMap();
final F defaultValue; final F defaultValue;
@ -113,7 +113,7 @@ public abstract class FieldAugment<T, F> {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/FieldAugment$MapWeakFieldAugment.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/FieldAugment$MapWeakFieldAugment.SCL.lombok */
static class MapWeakFieldAugment<T, F> extends MapFieldAugment<T, F> { static class MapWeakFieldAugment<T, F> extends MapFieldAugment<T, F> {
MapWeakFieldAugment(F f) { MapWeakFieldAugment(F f) {
super(f); super(f);
@ -138,7 +138,7 @@ public abstract class FieldAugment<T, F> {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/FieldAugment$ReflectionFieldAugment.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/FieldAugment$ReflectionFieldAugment.SCL.lombok */
private static class ReflectionFieldAugment<T, F> extends FieldAugment<T, F> { private static class ReflectionFieldAugment<T, F> extends FieldAugment<T, F> {
private final Object lock = new Object(); private final Object lock = new Object();
private final Field field; private final Field field;

View File

@ -1,5 +1,5 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/FieldSelect.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/FieldSelect.SCL.lombok */
public class FieldSelect { public class FieldSelect {
private final String finalPart; private final String finalPart;

View File

@ -3,7 +3,7 @@ package lombok.core;
import java.util.Collections; import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:lombok/core/GuavaTypeMap.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/GuavaTypeMap.SCL.lombok */
public final class GuavaTypeMap { public final class GuavaTypeMap {
private static final Map<String, String> TYPE_TO_GUAVA_TYPE; private static final Map<String, String> TYPE_TO_GUAVA_TYPE;

View File

@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
@Target({ElementType.TYPE}) @Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
/* loaded from: com.discord-121110.apk:lombok/core/HandlerPriority.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/HandlerPriority.SCL.lombok */
public @interface HandlerPriority { public @interface HandlerPriority {
int value(); int value();

View File

@ -1,7 +1,7 @@
package lombok.core; package lombok.core;
import java.util.Collection; import java.util.Collection;
/* loaded from: com.discord-121110.apk:lombok/core/ImportList.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/ImportList.SCL.lombok */
public interface ImportList { public interface ImportList {
String getFullyQualifiedNameForSimpleName(String str); String getFullyQualifiedNameForSimpleName(String str);

View File

@ -2,7 +2,7 @@ package lombok.core;
import com.adjust.sdk.Constants; import com.adjust.sdk.Constants;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/* loaded from: com.discord-121110.apk:lombok/core/JavaIdentifiers.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/JavaIdentifiers.SCL.lombok */
public class JavaIdentifiers { 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 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)$"); private static final Pattern PRIMITIVE_TYPE_NAME_PATTERN = Pattern.compile("^(?:boolean|byte|short|int|long|float|double|char)$");

View File

@ -2,7 +2,7 @@ package lombok.core;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/LombokApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokApp.SCL.lombok */
public abstract class LombokApp { public abstract class LombokApp {
public abstract int runApp(List<String> list) throws Exception; public abstract int runApp(List<String> list) throws Exception;

View File

@ -10,14 +10,14 @@ import lombok.core.configuration.ConfigurationProblemReporter;
import lombok.core.configuration.ConfigurationResolver; import lombok.core.configuration.ConfigurationResolver;
import lombok.core.configuration.ConfigurationResolverFactory; import lombok.core.configuration.ConfigurationResolverFactory;
import lombok.core.configuration.FileSystemSourceCache; import lombok.core.configuration.FileSystemSourceCache;
/* loaded from: com.discord-121110.apk:lombok/core/LombokConfiguration.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokConfiguration.SCL.lombok */
public class LombokConfiguration { public class LombokConfiguration {
private static final ConfigurationResolver NULL_RESOLVER = new AnonymousClass1(); private static final ConfigurationResolver NULL_RESOLVER = new AnonymousClass1();
private static FileSystemSourceCache cache = new FileSystemSourceCache(); private static FileSystemSourceCache cache = new FileSystemSourceCache();
private static ConfigurationResolverFactory configurationResolverFactory; private static ConfigurationResolverFactory configurationResolverFactory;
/* renamed from: lombok.core.LombokConfiguration$1 reason: invalid class name */ /* renamed from: lombok.core.LombokConfiguration$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/LombokConfiguration$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokConfiguration$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationResolver { class AnonymousClass1 implements ConfigurationResolver {
AnonymousClass1() { AnonymousClass1() {
} }
@ -32,7 +32,7 @@ public class LombokConfiguration {
} }
/* renamed from: lombok.core.LombokConfiguration$2 reason: invalid class name */ /* renamed from: lombok.core.LombokConfiguration$2 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/LombokConfiguration$2.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokConfiguration$2.SCL.lombok */
class AnonymousClass2 implements ConfigurationResolverFactory { class AnonymousClass2 implements ConfigurationResolverFactory {
AnonymousClass2() { AnonymousClass2() {
} }
@ -44,7 +44,7 @@ public class LombokConfiguration {
} }
/* renamed from: lombok.core.LombokConfiguration$3 reason: invalid class name */ /* renamed from: lombok.core.LombokConfiguration$3 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/LombokConfiguration$3.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokConfiguration$3.SCL.lombok */
class AnonymousClass3 implements ConfigurationResolverFactory { class AnonymousClass3 implements ConfigurationResolverFactory {
private final /* synthetic */ ConfigurationFileToSource val$fileToSource; private final /* synthetic */ ConfigurationFileToSource val$fileToSource;

View File

@ -5,13 +5,13 @@ import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
/* loaded from: com.discord-121110.apk:lombok/core/LombokImmutableList.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokImmutableList.SCL.lombok */
public final class LombokImmutableList<T> implements Iterable<T> { public final class LombokImmutableList<T> implements Iterable<T> {
private Object[] content; private Object[] content;
private static final LombokImmutableList<?> EMPTY = new LombokImmutableList<>(new Object[0]); private static final LombokImmutableList<?> EMPTY = new LombokImmutableList<>(new Object[0]);
/* renamed from: lombok.core.LombokImmutableList$1 reason: invalid class name */ /* renamed from: lombok.core.LombokImmutableList$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/LombokImmutableList$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokImmutableList$1.SCL.lombok */
class AnonymousClass1 implements Iterator<T> { class AnonymousClass1 implements Iterator<T> {
private int idx = 0; private int idx = 0;

View File

@ -6,7 +6,7 @@ import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:lombok/core/LombokInternalAliasing.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/LombokInternalAliasing.SCL.lombok */
public class LombokInternalAliasing { public class LombokInternalAliasing {
public static final Map<String, String> ALIASES; public static final Map<String, String> ALIASES;
public static final Map<String, Collection<String>> REVERSE_ALIASES; public static final Map<String, Collection<String>> REVERSE_ALIASES;

View File

@ -10,7 +10,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import lombok.core.AST; import lombok.core.AST;
import lombok.core.LombokNode; import lombok.core.LombokNode;
/* loaded from: com.discord-121110.apk:lombok/core/LombokNode.SCL.lombok */ /* loaded from: com.discord-121111.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 { 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 AST.Kind kind;
protected final N node; protected final N node;

View File

@ -9,13 +9,13 @@ import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/Main.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/Main.SCL.lombok */
public class Main { public class Main {
private static final Collection<?> HELP_SWITCHES = Collections.unmodifiableList(Arrays.asList("/?", "/h", "/help", "-h", "-help", "--help", "help", "h")); 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<LombokApp> apps;
private final List<String> args; private final List<String> args;
/* loaded from: com.discord-121110.apk:lombok/core/Main$LicenseApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/Main$LicenseApp.SCL.lombok */
public static class LicenseApp extends LombokApp { public static class LicenseApp extends LombokApp {
@Override // lombok.core.LombokApp @Override // lombok.core.LombokApp
public String getAppName() { public String getAppName() {
@ -54,7 +54,7 @@ public class Main {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/Main$VersionApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/Main$VersionApp.SCL.lombok */
public static class VersionApp extends LombokApp { public static class VersionApp extends LombokApp {
@Override // lombok.core.LombokApp @Override // lombok.core.LombokApp
public String getAppName() { public String getAppName() {

View File

@ -9,12 +9,12 @@ import java.io.Writer;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/PostCompiler.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PostCompiler.SCL.lombok */
public final class PostCompiler { public final class PostCompiler {
private static List<PostCompilerTransformation> transformations; private static List<PostCompilerTransformation> transformations;
/* renamed from: lombok.core.PostCompiler$1 reason: invalid class name */ /* renamed from: lombok.core.PostCompiler$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/PostCompiler$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PostCompiler$1.SCL.lombok */
class AnonymousClass1 extends ByteArrayOutputStream { class AnonymousClass1 extends ByteArrayOutputStream {
private final /* synthetic */ String val$fileName; private final /* synthetic */ String val$fileName;
private final /* synthetic */ DiagnosticsReceiver val$diagnostics; private final /* synthetic */ DiagnosticsReceiver val$diagnostics;

View File

@ -1,5 +1,5 @@
package lombok.core; package lombok.core;
/* loaded from: com.discord-121110.apk:lombok/core/PostCompilerTransformation.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PostCompilerTransformation.SCL.lombok */
public interface PostCompilerTransformation { public interface PostCompilerTransformation {
byte[] applyTransformations(byte[] bArr, String str, DiagnosticsReceiver diagnosticsReceiver); byte[] applyTransformations(byte[] bArr, String str, DiagnosticsReceiver diagnosticsReceiver);
} }

View File

@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.METHOD, ElementType.TYPE}) @Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.SOURCE) @Retention(RetentionPolicy.SOURCE)
/* loaded from: com.discord-121110.apk:lombok/core/PrintAST.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PrintAST.SCL.lombok */
public @interface PrintAST { public @interface PrintAST {
String outfile() default ""; String outfile() default "";

View File

@ -15,10 +15,10 @@ import java.util.jar.JarOutputStream;
import java.util.zip.ZipEntry; import java.util.zip.ZipEntry;
import lombok.Lombok; import lombok.Lombok;
import lombok.patcher.ClassRootFinder; import lombok.patcher.ClassRootFinder;
/* loaded from: com.discord-121110.apk:lombok/core/PublicApiCreatorApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PublicApiCreatorApp.SCL.lombok */
public class PublicApiCreatorApp extends LombokApp { public class PublicApiCreatorApp extends LombokApp {
/* loaded from: com.discord-121110.apk:lombok/core/PublicApiCreatorApp$Fail.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/PublicApiCreatorApp$Fail.SCL.lombok */
private static class Fail extends Exception { private static class Fail extends Exception {
Fail(String str) { Fail(String str) {
super(str); super(str);

View File

@ -16,18 +16,18 @@ import java.util.Enumeration;
import java.util.Iterator; import java.util.Iterator;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/SpiLoadUtil.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/SpiLoadUtil.SCL.lombok */
public class SpiLoadUtil { public class SpiLoadUtil {
/* renamed from: lombok.core.SpiLoadUtil$1 reason: invalid class name */ /* renamed from: lombok.core.SpiLoadUtil$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/SpiLoadUtil$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/SpiLoadUtil$1.SCL.lombok */
class AnonymousClass1 implements Iterable<C> { class AnonymousClass1 implements Iterable<C> {
private final /* synthetic */ Iterator val$names; private final /* synthetic */ Iterator val$names;
private final /* synthetic */ Class val$target; private final /* synthetic */ Class val$target;
private final /* synthetic */ ClassLoader val$fLoader; private final /* synthetic */ ClassLoader val$fLoader;
/* renamed from: lombok.core.SpiLoadUtil$1$1 reason: invalid class name and collision with other inner class name */ /* renamed from: lombok.core.SpiLoadUtil$1$1 reason: invalid class name and collision with other inner class name */
/* loaded from: com.discord-121110.apk:lombok/core/SpiLoadUtil$1$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/SpiLoadUtil$1$1.SCL.lombok */
class C04151 implements Iterator<C> { class C04151 implements Iterator<C> {
private final /* synthetic */ Iterator val$names; private final /* synthetic */ Iterator val$names;
private final /* synthetic */ Class val$target; private final /* synthetic */ Class val$target;

View File

@ -8,7 +8,7 @@ import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:lombok/core/TypeLibrary.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/TypeLibrary.SCL.lombok */
public class TypeLibrary { public class TypeLibrary {
private final Map<String, Object> unqualifiedToQualifiedMap; private final Map<String, Object> unqualifiedToQualifiedMap;
private final String unqualified; private final String unqualified;

View File

@ -3,7 +3,7 @@ package lombok.core;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import lombok.core.AST; import lombok.core.AST;
/* loaded from: com.discord-121110.apk:lombok/core/TypeResolver.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/TypeResolver.SCL.lombok */
public class TypeResolver { public class TypeResolver {
private ImportList imports; private ImportList imports;

View File

@ -2,7 +2,7 @@ package lombok.core;
import com.adjust.sdk.Constants; import com.adjust.sdk.Constants;
import java.io.InputStream; import java.io.InputStream;
/* loaded from: com.discord-121110.apk:lombok/core/Version.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/Version.SCL.lombok */
public class Version { public class Version {
private static final String VERSION = "1.18.16"; private static final String VERSION = "1.18.16";
private static final String RELEASE_NAME = "Envious Ferret"; private static final String RELEASE_NAME = "Envious Ferret";

View File

@ -2,7 +2,7 @@ package lombok.core.configuration;
import java.util.Collection; import java.util.Collection;
import java.util.Collections; import java.util.Collections;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/AllowHelper.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/AllowHelper.SCL.lombok */
public final class AllowHelper { public final class AllowHelper {
private static final Collection<? extends ConfigurationKey<?>> ALLOWABLE = Collections.emptySet(); private static final Collection<? extends ConfigurationKey<?>> ALLOWABLE = Collections.emptySet();

View File

@ -8,7 +8,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
import lombok.ConfigurationKeys; import lombok.ConfigurationKeys;
import lombok.core.configuration.ConfigurationSource; import lombok.core.configuration.ConfigurationSource;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/BubblingConfigurationResolver.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/BubblingConfigurationResolver.SCL.lombok */
public class BubblingConfigurationResolver implements ConfigurationResolver { public class BubblingConfigurationResolver implements ConfigurationResolver {
private final ConfigurationFile start; private final ConfigurationFile start;
private final ConfigurationFileToSource fileMapper; private final ConfigurationFileToSource fileMapper;

View File

@ -1,5 +1,5 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/CallSuperType.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/CallSuperType.SCL.lombok */
public enum CallSuperType { public enum CallSuperType {
CALL, CALL,
SKIP, SKIP,

View File

@ -2,7 +2,7 @@ package lombok.core.configuration;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/CheckerFrameworkVersion.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/CheckerFrameworkVersion.SCL.lombok */
public final class CheckerFrameworkVersion implements ConfigurationValueType { public final class CheckerFrameworkVersion implements ConfigurationValueType {
private final int version; private final int version;
private static final int DEFAULT = 3200; private static final int DEFAULT = 3200;

View File

@ -32,7 +32,7 @@ import lombok.ConfigurationKeys;
import lombok.core.LombokApp; import lombok.core.LombokApp;
import lombok.core.configuration.ConfigurationKeysLoader; import lombok.core.configuration.ConfigurationKeysLoader;
import lombok.core.configuration.ConfigurationParser; import lombok.core.configuration.ConfigurationParser;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp.SCL.lombok */
public class ConfigurationApp extends LombokApp { public class ConfigurationApp extends LombokApp {
private PrintStream out = System.out; private PrintStream out = System.out;
private PrintStream err = System.err; private PrintStream err = System.err;
@ -40,7 +40,7 @@ public class ConfigurationApp extends LombokApp {
private static final ConfigurationProblemReporter VOID = new AnonymousClass1(); private static final ConfigurationProblemReporter VOID = new AnonymousClass1();
/* renamed from: lombok.core.configuration.ConfigurationApp$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationApp$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationProblemReporter { class AnonymousClass1 implements ConfigurationProblemReporter {
AnonymousClass1() { AnonymousClass1() {
} }
@ -51,7 +51,7 @@ public class ConfigurationApp extends LombokApp {
} }
/* renamed from: lombok.core.configuration.ConfigurationApp$2 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationApp$2 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp$2.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$2.SCL.lombok */
class AnonymousClass2 implements ConfigurationProblemReporter { class AnonymousClass2 implements ConfigurationProblemReporter {
private final /* synthetic */ List val$problems; 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 */ /* renamed from: lombok.core.configuration.ConfigurationApp$3 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp$3.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$3.SCL.lombok */
class AnonymousClass3 implements ConfigurationParser.Collector { class AnonymousClass3 implements ConfigurationParser.Collector {
private final /* synthetic */ Deque val$round; private final /* synthetic */ Deque val$round;
private final /* synthetic */ Collection val$keys; 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 */ /* renamed from: lombok.core.configuration.ConfigurationApp$4 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp$4.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$4.SCL.lombok */
class AnonymousClass4 implements Comparator<URI> { class AnonymousClass4 implements Comparator<URI> {
AnonymousClass4() { AnonymousClass4() {
} }
@ -126,7 +126,7 @@ public class ConfigurationApp extends LombokApp {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationApp$CmdArgs.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$CmdArgs.SCL.lombok */
public static class CmdArgs { public static class CmdArgs {
@Mandatory(onlyIfNot = {"help", "generate"}) @Mandatory(onlyIfNot = {"help", "generate"})
@Description("Paths to java files or directories the configuration is to be printed for.") @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-121110.apk:lombok/core/configuration/ConfigurationApp$Source.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationApp$Source.SCL.lombok */
private static final class Source { private static final class Source {
final ConfigurationFile file; final ConfigurationFile file;
final String description; final String description;

View File

@ -10,14 +10,14 @@ import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType.SCL.lombok */
public final class ConfigurationDataType { public final class ConfigurationDataType {
private static final Map<Class<?>, ConfigurationValueParser> SIMPLE_TYPES; private static final Map<Class<?>, ConfigurationValueParser> SIMPLE_TYPES;
private final boolean isList; private final boolean isList;
private final ConfigurationValueParser parser; private final ConfigurationValueParser parser;
/* renamed from: lombok.core.configuration.ConfigurationDataType$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationValueParser { class AnonymousClass1 implements ConfigurationValueParser {
AnonymousClass1() { AnonymousClass1() {
} }
@ -39,7 +39,7 @@ public final class ConfigurationDataType {
} }
/* renamed from: lombok.core.configuration.ConfigurationDataType$2 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$2 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$2.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$2.SCL.lombok */
class AnonymousClass2 implements ConfigurationValueParser { class AnonymousClass2 implements ConfigurationValueParser {
AnonymousClass2() { AnonymousClass2() {
} }
@ -61,7 +61,7 @@ public final class ConfigurationDataType {
} }
/* renamed from: lombok.core.configuration.ConfigurationDataType$3 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$3 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$3.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$3.SCL.lombok */
class AnonymousClass3 implements ConfigurationValueParser { class AnonymousClass3 implements ConfigurationValueParser {
AnonymousClass3() { AnonymousClass3() {
} }
@ -83,7 +83,7 @@ public final class ConfigurationDataType {
} }
/* renamed from: lombok.core.configuration.ConfigurationDataType$4 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$4 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$4.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$4.SCL.lombok */
class AnonymousClass4 implements ConfigurationValueParser { class AnonymousClass4 implements ConfigurationValueParser {
AnonymousClass4() { AnonymousClass4() {
} }
@ -105,7 +105,7 @@ public final class ConfigurationDataType {
} }
/* renamed from: lombok.core.configuration.ConfigurationDataType$5 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$5 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$5.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$5.SCL.lombok */
class AnonymousClass5 implements ConfigurationValueParser { class AnonymousClass5 implements ConfigurationValueParser {
AnonymousClass5() { AnonymousClass5() {
} }
@ -127,7 +127,7 @@ public final class ConfigurationDataType {
} }
/* renamed from: lombok.core.configuration.ConfigurationDataType$6 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationDataType$6 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$6.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$6.SCL.lombok */
class AnonymousClass6 implements ConfigurationValueParser { class AnonymousClass6 implements ConfigurationValueParser {
private final /* synthetic */ Class val$rawType; private final /* synthetic */ Class val$rawType;
private final /* synthetic */ Class val$type; 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 */ /* renamed from: lombok.core.configuration.ConfigurationDataType$7 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationDataType$7.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationDataType$7.SCL.lombok */
class AnonymousClass7 implements ConfigurationValueParser { class AnonymousClass7 implements ConfigurationValueParser {
private final /* synthetic */ Method val$valueOfMethod; private final /* synthetic */ Method val$valueOfMethod;
private final /* synthetic */ Method val$descriptionMethod; private final /* synthetic */ Method val$descriptionMethod;

View File

@ -15,7 +15,7 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import java.util.zip.ZipEntry; import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream; import java.util.zip.ZipInputStream;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFile.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFile.SCL.lombok */
public abstract class ConfigurationFile { public abstract class ConfigurationFile {
private static final String LOMBOK_CONFIG_FILENAME = "lombok.config"; private static final String LOMBOK_CONFIG_FILENAME = "lombok.config";
private final String identifier; private final String identifier;
@ -24,7 +24,7 @@ public abstract class ConfigurationFile {
private static final ThreadLocal<byte[]> buffers = new AnonymousClass1(); private static final ThreadLocal<byte[]> buffers = new AnonymousClass1();
/* renamed from: lombok.core.configuration.ConfigurationFile$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationFile$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFile$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFile$1.SCL.lombok */
class AnonymousClass1 extends ThreadLocal<byte[]> { class AnonymousClass1 extends ThreadLocal<byte[]> {
AnonymousClass1() { AnonymousClass1() {
} }
@ -37,7 +37,7 @@ public abstract class ConfigurationFile {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFile$ArchivedConfigurationFile.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFile$ArchivedConfigurationFile.SCL.lombok */
private static class ArchivedConfigurationFile extends ConfigurationFile { private static class ArchivedConfigurationFile extends ConfigurationFile {
private static final URI ROOT1 = URI.create("http://x.y/a/"); private static final URI ROOT1 = URI.create("http://x.y/a/");
private static final URI ROOT2 = URI.create("ftp://y.x/b/"); private static final URI ROOT2 = URI.create("ftp://y.x/b/");
@ -172,7 +172,7 @@ public abstract class ConfigurationFile {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFile$CharSequenceConfigurationFile.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFile$CharSequenceConfigurationFile.SCL.lombok */
private static class CharSequenceConfigurationFile extends ConfigurationFile { private static class CharSequenceConfigurationFile extends ConfigurationFile {
private final CharSequence contents; private final CharSequence contents;
private final long lastModified; private final long lastModified;
@ -213,7 +213,7 @@ public abstract class ConfigurationFile {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFile$RegularConfigurationFile.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFile$RegularConfigurationFile.SCL.lombok */
private static class RegularConfigurationFile extends ConfigurationFile { private static class RegularConfigurationFile extends ConfigurationFile {
private final File file; private final File file;

View File

@ -1,5 +1,5 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationFileToSource.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationFileToSource.SCL.lombok */
public interface ConfigurationFileToSource { public interface ConfigurationFileToSource {
ConfigurationSource parsed(ConfigurationFile configurationFile); ConfigurationSource parsed(ConfigurationFile configurationFile);
} }

View File

@ -4,7 +4,7 @@ import java.util.Collections;
import java.util.Map; import java.util.Map;
import java.util.TreeMap; import java.util.TreeMap;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationKey.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationKey.SCL.lombok */
public abstract class ConfigurationKey<T> { public abstract class ConfigurationKey<T> {
private static final Pattern VALID_NAMES = Pattern.compile("[-_a-zA-Z][-.\\w]*(?<![-.])"); 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); private static final TreeMap<String, ConfigurationKey<?>> registeredKeys = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);

View File

@ -5,10 +5,10 @@ import java.util.Iterator;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import lombok.ConfigurationKeys; import lombok.ConfigurationKeys;
import lombok.core.SpiLoadUtil; import lombok.core.SpiLoadUtil;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationKeysLoader.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationKeysLoader.SCL.lombok */
public interface ConfigurationKeysLoader { public interface ConfigurationKeysLoader {
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader.SCL.lombok */
public static class LoaderLoader { public static class LoaderLoader {
private static final AtomicBoolean alreadyLoaded = new AtomicBoolean(false); private static final AtomicBoolean alreadyLoaded = new AtomicBoolean(false);

View File

@ -4,14 +4,14 @@ import java.io.IOException;
import java.util.Map; import java.util.Map;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationParser.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationParser.SCL.lombok */
public class ConfigurationParser { public class ConfigurationParser {
private static final Pattern LINE = Pattern.compile("(?:clear\\s+([^=]+))|(?:(\\S*?)\\s*([-+]?=)\\s*(.*?))"); 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 NEWLINE_FINDER = Pattern.compile("^[\t ]*(.*?)[\t\r ]*$", 8);
private static final Pattern IMPORT = Pattern.compile("import\\s+(.+?)"); private static final Pattern IMPORT = Pattern.compile("import\\s+(.+?)");
private ConfigurationProblemReporter reporter; private ConfigurationProblemReporter reporter;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationParser$Collector.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationParser$Collector.SCL.lombok */
public interface Collector { public interface Collector {
void addImport(ConfigurationFile configurationFile, ConfigurationFile configurationFile2, int i); void addImport(ConfigurationFile configurationFile, ConfigurationFile configurationFile2, int i);

View File

@ -1,12 +1,12 @@
package lombok.core.configuration; package lombok.core.configuration;
import lombok.eclipse.handlers.EclipseHandlerUtil; import lombok.eclipse.handlers.EclipseHandlerUtil;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationProblemReporter.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationProblemReporter.SCL.lombok */
public interface ConfigurationProblemReporter { public interface ConfigurationProblemReporter {
public static final ConfigurationProblemReporter CONSOLE = new AnonymousClass1(); public static final ConfigurationProblemReporter CONSOLE = new AnonymousClass1();
/* renamed from: lombok.core.configuration.ConfigurationProblemReporter$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.ConfigurationProblemReporter$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationProblemReporter$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationProblemReporter$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationProblemReporter { class AnonymousClass1 implements ConfigurationProblemReporter {
AnonymousClass1() { AnonymousClass1() {
} }

View File

@ -1,5 +1,5 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationResolver.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationResolver.SCL.lombok */
public interface ConfigurationResolver { public interface ConfigurationResolver {
<T> T resolve(ConfigurationKey<T> configurationKey); <T> T resolve(ConfigurationKey<T> configurationKey);
} }

View File

@ -1,7 +1,7 @@
package lombok.core.configuration; package lombok.core.configuration;
import java.net.URI; import java.net.URI;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationResolverFactory.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationResolverFactory.SCL.lombok */
public interface ConfigurationResolverFactory { public interface ConfigurationResolverFactory {
ConfigurationResolver createResolver(URI uri); ConfigurationResolver createResolver(URI uri);
} }

View File

@ -1,10 +1,10 @@
package lombok.core.configuration; package lombok.core.configuration;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationSource.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationSource.SCL.lombok */
public interface ConfigurationSource { public interface ConfigurationSource {
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationSource$ListModification.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationSource$ListModification.SCL.lombok */
public static final class ListModification { public static final class ListModification {
private final Object value; private final Object value;
private final boolean added; private final boolean added;
@ -23,7 +23,7 @@ public interface ConfigurationSource {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationSource$Result.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationSource$Result.SCL.lombok */
public static final class Result { public static final class Result {
private final Object value; private final Object value;
private final boolean authoritative; private final boolean authoritative;

View File

@ -1,5 +1,5 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationValueParser.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationValueParser.SCL.lombok */
interface ConfigurationValueParser { interface ConfigurationValueParser {
Object parse(String str); Object parse(String str);

View File

@ -1,4 +1,4 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ConfigurationValueType.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ConfigurationValueType.SCL.lombok */
public interface ConfigurationValueType { public interface ConfigurationValueType {
} }

View File

@ -6,7 +6,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
@Target({ElementType.TYPE}) @Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
/* loaded from: com.discord-121110.apk:lombok/core/configuration/ExampleValueString.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/ExampleValueString.SCL.lombok */
public @interface ExampleValueString { public @interface ExampleValueString {
String value(); String value();
} }

View File

@ -6,7 +6,7 @@ import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import lombok.core.debug.ProblemReporter; import lombok.core.debug.ProblemReporter;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/FileSystemSourceCache.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/FileSystemSourceCache.SCL.lombok */
public class FileSystemSourceCache { public class FileSystemSourceCache {
private static final long FULL_CACHE_CLEAR_INTERVAL = TimeUnit.MINUTES.toMillis(30); private static final long FULL_CACHE_CLEAR_INTERVAL = TimeUnit.MINUTES.toMillis(30);
private static final long RECHECK_FILESYSTEM = TimeUnit.SECONDS.toMillis(2); private static final long RECHECK_FILESYSTEM = TimeUnit.SECONDS.toMillis(2);
@ -17,7 +17,7 @@ public class FileSystemSourceCache {
private volatile long lastCacheClear = System.currentTimeMillis(); private volatile long lastCacheClear = System.currentTimeMillis();
/* renamed from: lombok.core.configuration.FileSystemSourceCache$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.FileSystemSourceCache$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/FileSystemSourceCache$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/FileSystemSourceCache$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationFileToSource { class AnonymousClass1 implements ConfigurationFileToSource {
private final /* synthetic */ ConfigurationParser val$parser; private final /* synthetic */ ConfigurationParser val$parser;
@ -31,7 +31,7 @@ public class FileSystemSourceCache {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/configuration/FileSystemSourceCache$Content.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/FileSystemSourceCache$Content.SCL.lombok */
private static class Content { private static class Content {
ConfigurationSource source; ConfigurationSource source;
long lastModified; long lastModified;

View File

@ -1,5 +1,5 @@
package lombok.core.configuration; package lombok.core.configuration;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/FlagUsageType.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/FlagUsageType.SCL.lombok */
public enum FlagUsageType { public enum FlagUsageType {
WARNING, WARNING,
ERROR, ERROR,

View File

@ -1,7 +1,7 @@
package lombok.core.configuration; package lombok.core.configuration;
import lombok.core.JavaIdentifiers; import lombok.core.JavaIdentifiers;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/IdentifierName.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/IdentifierName.SCL.lombok */
public final class IdentifierName implements ConfigurationValueType { public final class IdentifierName implements ConfigurationValueType {
private final String name; private final String name;

View File

@ -5,7 +5,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/LogDeclaration.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/LogDeclaration.SCL.lombok */
public final class LogDeclaration implements ConfigurationValueType { public final class LogDeclaration implements ConfigurationValueType {
private static final Pattern PARAMETERS_PATTERN = Pattern.compile("(?:\\(([A-Z,]*)\\))"); private static final Pattern PARAMETERS_PATTERN = Pattern.compile("(?:\\(([A-Z,]*)\\))");
private static final Pattern DECLARATION_PATTERN = Pattern.compile("^(?:([^ ]+) )?([^(]+)\\.([^(]+)(" + PARAMETERS_PATTERN.pattern() + "+)$"); 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> parametersWithoutTopic;
private final List<LogFactoryParameter> parametersWithTopic; private final List<LogFactoryParameter> parametersWithTopic;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/LogDeclaration$LogFactoryParameter.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/LogDeclaration$LogFactoryParameter.SCL.lombok */
public enum LogFactoryParameter { public enum LogFactoryParameter {
TYPE, TYPE,
NAME, NAME,

View File

@ -6,7 +6,7 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullAnnotationLibrary.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullAnnotationLibrary.SCL.lombok */
public final class NullAnnotationLibrary implements ConfigurationValueType { public final class NullAnnotationLibrary implements ConfigurationValueType {
private final String key; private final String key;
private final String nonNullAnnotation; private final String nonNullAnnotation;

View File

@ -5,7 +5,7 @@ import lombok.core.LombokImmutableList;
import lombok.core.handlers.HandlerUtil; import lombok.core.handlers.HandlerUtil;
/* JADX WARN: Failed to restore enum class, 'enum' modifier removed */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
@ExampleValueString("[NullPointerException | IllegalArgumentException | Assertion | JDK | Guava]") @ExampleValueString("[NullPointerException | IllegalArgumentException | Assertion | JDK | Guava]")
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType.SCL.lombok */
public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType> { public abstract class NullCheckExceptionType extends Enum<NullCheckExceptionType> {
public static final NullCheckExceptionType ILLEGAL_ARGUMENT_EXCEPTION = new AnonymousClass1("ILLEGAL_ARGUMENT_EXCEPTION", 0); 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); 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 */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
/* renamed from: lombok.core.configuration.NullCheckExceptionType$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.NullCheckExceptionType$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType$1.SCL.lombok */
class AnonymousClass1 extends NullCheckExceptionType { class AnonymousClass1 extends NullCheckExceptionType {
AnonymousClass1(String str, int i) { AnonymousClass1(String str, int i) {
super(str, i, null); 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 */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
/* renamed from: lombok.core.configuration.NullCheckExceptionType$2 reason: invalid class name */ /* renamed from: lombok.core.configuration.NullCheckExceptionType$2 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType$2.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType$2.SCL.lombok */
class AnonymousClass2 extends NullCheckExceptionType { class AnonymousClass2 extends NullCheckExceptionType {
AnonymousClass2(String str, int i) { AnonymousClass2(String str, int i) {
super(str, i, null); 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 */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
/* renamed from: lombok.core.configuration.NullCheckExceptionType$3 reason: invalid class name */ /* renamed from: lombok.core.configuration.NullCheckExceptionType$3 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType$3.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType$3.SCL.lombok */
class AnonymousClass3 extends NullCheckExceptionType { class AnonymousClass3 extends NullCheckExceptionType {
AnonymousClass3(String str, int i) { AnonymousClass3(String str, int i) {
super(str, i, null); 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 */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
/* renamed from: lombok.core.configuration.NullCheckExceptionType$4 reason: invalid class name */ /* renamed from: lombok.core.configuration.NullCheckExceptionType$4 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType$4.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType$4.SCL.lombok */
class AnonymousClass4 extends NullCheckExceptionType { class AnonymousClass4 extends NullCheckExceptionType {
AnonymousClass4(String str, int i) { AnonymousClass4(String str, int i) {
super(str, i, null); 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 */ /* JADX WARN: Failed to restore enum class, 'enum' modifier removed */
/* renamed from: lombok.core.configuration.NullCheckExceptionType$5 reason: invalid class name */ /* renamed from: lombok.core.configuration.NullCheckExceptionType$5 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/NullCheckExceptionType$5.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/NullCheckExceptionType$5.SCL.lombok */
class AnonymousClass5 extends NullCheckExceptionType { class AnonymousClass5 extends NullCheckExceptionType {
AnonymousClass5(String str, int i) { AnonymousClass5(String str, int i) {
super(str, i, null); super(str, i, null);

View File

@ -8,13 +8,13 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import lombok.core.configuration.ConfigurationParser; import lombok.core.configuration.ConfigurationParser;
import lombok.core.configuration.ConfigurationSource; import lombok.core.configuration.ConfigurationSource;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/SingleConfigurationSource.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/SingleConfigurationSource.SCL.lombok */
public final class SingleConfigurationSource implements ConfigurationSource { public final class SingleConfigurationSource implements ConfigurationSource {
private final Map<ConfigurationKey<?>, ConfigurationSource.Result> values = new HashMap(); private final Map<ConfigurationKey<?>, ConfigurationSource.Result> values = new HashMap();
private final List<ConfigurationFile> imports; private final List<ConfigurationFile> imports;
/* renamed from: lombok.core.configuration.SingleConfigurationSource$1 reason: invalid class name */ /* renamed from: lombok.core.configuration.SingleConfigurationSource$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/configuration/SingleConfigurationSource$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/SingleConfigurationSource$1.SCL.lombok */
class AnonymousClass1 implements ConfigurationParser.Collector { class AnonymousClass1 implements ConfigurationParser.Collector {
private final /* synthetic */ List val$imports; private final /* synthetic */ List val$imports;
private final /* synthetic */ Map val$values; private final /* synthetic */ Map val$values;

View File

@ -1,7 +1,7 @@
package lombok.core.configuration; package lombok.core.configuration;
import lombok.core.JavaIdentifiers; import lombok.core.JavaIdentifiers;
/* loaded from: com.discord-121110.apk:lombok/core/configuration/TypeName.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/configuration/TypeName.SCL.lombok */
public final class TypeName implements ConfigurationValueType { public final class TypeName implements ConfigurationValueType {
private final String name; private final String name;

View File

@ -8,7 +8,7 @@ import java.util.Date;
import java.util.Random; import java.util.Random;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import lombok.core.Version; import lombok.core.Version;
/* loaded from: com.discord-121110.apk:lombok/core/debug/AssertionLogger.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/AssertionLogger.SCL.lombok */
public class AssertionLogger { public class AssertionLogger {
private static final String LOG_PATH; private static final String LOG_PATH;
private static final AtomicBoolean loggedIntro; private static final AtomicBoolean loggedIntro;

View File

@ -6,7 +6,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.concurrent.atomic.AtomicLong; import java.util.concurrent.atomic.AtomicLong;
import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration; import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
/* loaded from: com.discord-121110.apk:lombok/core/debug/DebugSnapshot.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/DebugSnapshot.SCL.lombok */
public class DebugSnapshot implements Comparable<DebugSnapshot> { public class DebugSnapshot implements Comparable<DebugSnapshot> {
private static AtomicLong counter = new AtomicLong(); private static AtomicLong counter = new AtomicLong();
private final long bits; private final long bits;

View File

@ -4,7 +4,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.WeakHashMap; import java.util.WeakHashMap;
import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration; import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
/* loaded from: com.discord-121110.apk:lombok/core/debug/DebugSnapshotStore.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/DebugSnapshotStore.SCL.lombok */
public class DebugSnapshotStore { public class DebugSnapshotStore {
public static final DebugSnapshotStore INSTANCE = new DebugSnapshotStore(); public static final DebugSnapshotStore INSTANCE = new DebugSnapshotStore();
public static final boolean GLOBAL_DSS_DISABLE_SWITCH = true; public static final boolean GLOBAL_DSS_DISABLE_SWITCH = true;

View File

@ -6,12 +6,12 @@ import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter; import java.io.StringWriter;
/* loaded from: com.discord-121110.apk:lombok/core/debug/FileLog.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/FileLog.SCL.lombok */
public class FileLog { public class FileLog {
private static FileOutputStream fos; private static FileOutputStream fos;
/* renamed from: lombok.core.debug.FileLog$1 reason: invalid class name */ /* renamed from: lombok.core.debug.FileLog$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/debug/FileLog$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/FileLog$1.SCL.lombok */
class AnonymousClass1 extends Thread { class AnonymousClass1 extends Thread {
AnonymousClass1() { AnonymousClass1() {
} }

View File

@ -4,7 +4,7 @@ import java.io.PrintStream;
import java.util.GregorianCalendar; import java.util.GregorianCalendar;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicStampedReference; import java.util.concurrent.atomic.AtomicStampedReference;
/* loaded from: com.discord-121110.apk:lombok/core/debug/HistogramTracker.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/HistogramTracker.SCL.lombok */
public class HistogramTracker { 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[] RANGES = {250001, 500001, 1000001, 2000001, 4000001, 8000001, 16000001, 32000001, 64000001, 128000001, 256000001, 512000001, 1024000001, 2048000001, 10000000001L};
private static final long REPORT_WINDOW = 60000; private static final long REPORT_WINDOW = 60000;
@ -14,7 +14,7 @@ public class HistogramTracker {
private final PrintStream out; private final PrintStream out;
/* renamed from: lombok.core.debug.HistogramTracker$1 reason: invalid class name */ /* renamed from: lombok.core.debug.HistogramTracker$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/debug/HistogramTracker$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/HistogramTracker$1.SCL.lombok */
class AnonymousClass1 extends Thread { class AnonymousClass1 extends Thread {
AnonymousClass1(String str) { AnonymousClass1(String str) {
super(str); super(str);

View File

@ -6,11 +6,11 @@ import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.Status;
import org.osgi.framework.Bundle; import org.osgi.framework.Bundle;
/* loaded from: com.discord-121110.apk:lombok/core/debug/ProblemReporter.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/ProblemReporter.SCL.lombok */
public class ProblemReporter { public class ProblemReporter {
private static ErrorLogger logger; private static ErrorLogger logger;
/* loaded from: com.discord-121110.apk:lombok/core/debug/ProblemReporter$EclipseWorkspaceLogger.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/ProblemReporter$EclipseWorkspaceLogger.SCL.lombok */
private static class EclipseWorkspaceLogger implements ErrorLogger { private static class EclipseWorkspaceLogger implements ErrorLogger {
private static final int MAX_LOG = 200; private static final int MAX_LOG = 200;
private static final long SQUELCH_TIMEOUT = TimeUnit.HOURS.toMillis(1); private static final long SQUELCH_TIMEOUT = TimeUnit.HOURS.toMillis(1);
@ -70,7 +70,7 @@ public class ProblemReporter {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/debug/ProblemReporter$ErrorLogger.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/ProblemReporter$ErrorLogger.SCL.lombok */
private interface ErrorLogger { private interface ErrorLogger {
void info(String str, Throwable th); void info(String str, Throwable th);
@ -79,7 +79,7 @@ public class ProblemReporter {
void error(String str, Throwable th); void error(String str, Throwable th);
} }
/* loaded from: com.discord-121110.apk:lombok/core/debug/ProblemReporter$TerminalLogger.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/debug/ProblemReporter$TerminalLogger.SCL.lombok */
private static class TerminalLogger implements ErrorLogger { private static class TerminalLogger implements ErrorLogger {
private TerminalLogger() { private TerminalLogger() {
} }

View File

@ -29,7 +29,7 @@ import lombok.core.configuration.ConfigurationKey;
import lombok.core.configuration.FlagUsageType; import lombok.core.configuration.FlagUsageType;
import lombok.experimental.Accessors; import lombok.experimental.Accessors;
import lombok.experimental.FieldDefaults; import lombok.experimental.FieldDefaults;
/* loaded from: com.discord-121110.apk:lombok/core/handlers/HandlerUtil.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/HandlerUtil.SCL.lombok */
public class HandlerUtil { public class HandlerUtil {
public static final String DEFAULT_EXCEPTION_FOR_NON_NULL = "java.lang.NullPointerException"; 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")); 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 LINE_BREAK_FINDER = Pattern.compile("(\\r?\\n)?");
private static final Pattern FIND_RETURN = Pattern.compile("^\\s*\\**\\s*@returns?\\s+.*$", 10); private static final Pattern FIND_RETURN = Pattern.compile("^\\s*\\**\\s*@returns?\\s+.*$", 10);
/* loaded from: com.discord-121110.apk:lombok/core/handlers/HandlerUtil$FieldAccess.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/HandlerUtil$FieldAccess.SCL.lombok */
public enum FieldAccess { public enum FieldAccess {
GETTER, GETTER,
PREFER_FIELD, PREFER_FIELD,

View File

@ -12,11 +12,11 @@ import lombok.ToString;
import lombok.core.AST; import lombok.core.AST;
import lombok.core.AnnotationValues; import lombok.core.AnnotationValues;
import lombok.core.LombokNode; import lombok.core.LombokNode;
/* loaded from: com.discord-121110.apk:lombok/core/handlers/InclusionExclusionUtils.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/InclusionExclusionUtils.SCL.lombok */
public class InclusionExclusionUtils { public class InclusionExclusionUtils {
/* renamed from: lombok.core.handlers.InclusionExclusionUtils$1 reason: invalid class name */ /* renamed from: lombok.core.handlers.InclusionExclusionUtils$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/handlers/InclusionExclusionUtils$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/InclusionExclusionUtils$1.SCL.lombok */
class AnonymousClass1 implements Comparator<Included<L, ToString.Include>> { class AnonymousClass1 implements Comparator<Included<L, ToString.Include>> {
AnonymousClass1() { AnonymousClass1() {
} }
@ -27,7 +27,7 @@ public class InclusionExclusionUtils {
} }
/* renamed from: lombok.core.handlers.InclusionExclusionUtils$2 reason: invalid class name */ /* renamed from: lombok.core.handlers.InclusionExclusionUtils$2 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/core/handlers/InclusionExclusionUtils$2.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/InclusionExclusionUtils$2.SCL.lombok */
class AnonymousClass2 implements Comparator<Included<L, EqualsAndHashCode.Include>> { class AnonymousClass2 implements Comparator<Included<L, EqualsAndHashCode.Include>> {
AnonymousClass2() { AnonymousClass2() {
} }
@ -37,7 +37,7 @@ public class InclusionExclusionUtils {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/handlers/InclusionExclusionUtils$Included.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/InclusionExclusionUtils$Included.SCL.lombok */
public static class Included<L, I extends Annotation> { public static class Included<L, I extends Annotation> {
private final L node; private final L node;
private final I inc; private final I inc;

View File

@ -10,7 +10,7 @@ import lombok.extern.log4j.Log4j;
import lombok.extern.log4j.Log4j2; import lombok.extern.log4j.Log4j2;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import lombok.extern.slf4j.XSlf4j; import lombok.extern.slf4j.XSlf4j;
/* loaded from: com.discord-121110.apk:lombok/core/handlers/LoggingFramework.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/LoggingFramework.SCL.lombok */
public class LoggingFramework { 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 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)")); public static final LoggingFramework JUL = new LoggingFramework(Log.class, LogDeclaration.valueOf("java.util.logging.Logger java.util.logging.Logger.getLogger(NAME)(TOPIC)"));

View File

@ -7,7 +7,7 @@ import java.io.InputStream;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/handlers/Singulars.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/Singulars.SCL.lombok */
public class Singulars { public class Singulars {
private static final List<String> SINGULAR_STORE = new ArrayList(); private static final List<String> SINGULAR_STORE = new ArrayList();

View File

@ -3,7 +3,7 @@ package lombok.core.handlers;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
import lombok.core.runtimeDependencies.RuntimeDependencyInfo; import lombok.core.runtimeDependencies.RuntimeDependencyInfo;
/* loaded from: com.discord-121110.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/handlers/SneakyThrowsAndCleanupDependencyInfo.SCL.lombok */
public class SneakyThrowsAndCleanupDependencyInfo implements RuntimeDependencyInfo { public class SneakyThrowsAndCleanupDependencyInfo implements RuntimeDependencyInfo {
@Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo @Override // lombok.core.runtimeDependencies.RuntimeDependencyInfo
public List<String> getRuntimeDependencies() { public List<String> getRuntimeDependencies() {

View File

@ -22,11 +22,11 @@ import java.util.jar.JarOutputStream;
import java.util.zip.ZipEntry; import java.util.zip.ZipEntry;
import lombok.core.LombokApp; import lombok.core.LombokApp;
import lombok.core.SpiLoadUtil; import lombok.core.SpiLoadUtil;
/* loaded from: com.discord-121110.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp.SCL.lombok */
public class CreateLombokRuntimeApp extends LombokApp { public class CreateLombokRuntimeApp extends LombokApp {
private List<RuntimeDependencyInfo> infoObjects; private List<RuntimeDependencyInfo> infoObjects;
/* loaded from: com.discord-121110.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$CmdArgs.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$CmdArgs.SCL.lombok */
private static class CmdArgs { private static class CmdArgs {
@Description("Prints those lombok transformations that require lombok-runtime.jar.") @Description("Prints those lombok transformations that require lombok-runtime.jar.")
@Mandatory(onlyIfNot = {"create"}) @Mandatory(onlyIfNot = {"create"})
@ -47,7 +47,7 @@ public class CreateLombokRuntimeApp extends LombokApp {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$Fail.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/runtimeDependencies/CreateLombokRuntimeApp$Fail.SCL.lombok */
private static class Fail extends Exception { private static class Fail extends Exception {
Fail(String str) { Fail(String str) {
super(str); super(str);

View File

@ -1,7 +1,7 @@
package lombok.core.runtimeDependencies; package lombok.core.runtimeDependencies;
import java.util.List; import java.util.List;
/* loaded from: com.discord-121110.apk:lombok/core/runtimeDependencies/RuntimeDependencyInfo.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/core/runtimeDependencies/RuntimeDependencyInfo.SCL.lombok */
public interface RuntimeDependencyInfo { public interface RuntimeDependencyInfo {
List<String> getRuntimeDependentsDescriptions(); List<String> getRuntimeDependentsDescriptions();

View File

@ -57,7 +57,7 @@ import lombok.javac.Javac;
import lombok.javac.LombokOptions; import lombok.javac.LombokOptions;
import lombok.javac.apt.LombokProcessor; import lombok.javac.apt.LombokProcessor;
import lombok.permit.Permit; import lombok.permit.Permit;
/* loaded from: com.discord-121110.apk:lombok/delombok/Delombok.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/Delombok.SCL.lombok */
public class Delombok { public class Delombok {
private Writer presetWriter; private Writer presetWriter;
private boolean verbose; private boolean verbose;
@ -81,7 +81,7 @@ public class Delombok {
private File output = null; private File output = null;
/* renamed from: lombok.delombok.Delombok$1 reason: invalid class name */ /* renamed from: lombok.delombok.Delombok$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/delombok/Delombok$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/Delombok$1.SCL.lombok */
class AnonymousClass1 extends OutputStream { class AnonymousClass1 extends OutputStream {
AnonymousClass1() { AnonymousClass1() {
} }
@ -91,7 +91,7 @@ public class Delombok {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/delombok/Delombok$CmdArgs.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/Delombok$CmdArgs.SCL.lombok */
private static class CmdArgs { private static class CmdArgs {
@Excludes({"quiet"}) @Excludes({"quiet"})
@Description("Print the name of each file as it is being delombok-ed.") @Description("Print the name of each file as it is being delombok-ed.")
@ -208,7 +208,7 @@ public class Delombok {
} }
} }
/* loaded from: com.discord-121110.apk:lombok/delombok/Delombok$InvalidFormatOptionException.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/Delombok$InvalidFormatOptionException.SCL.lombok */
public static class InvalidFormatOptionException extends Exception { public static class InvalidFormatOptionException extends Exception {
public InvalidFormatOptionException(String str) { public InvalidFormatOptionException(String str) {
super(str); super(str);

View File

@ -17,17 +17,17 @@ import java.util.jar.JarEntry;
import java.util.jar.JarFile; import java.util.jar.JarFile;
import lombok.core.LombokApp; import lombok.core.LombokApp;
import lombok.permit.Permit; import lombok.permit.Permit;
/* loaded from: com.discord-121110.apk:lombok/delombok/DelombokApp.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DelombokApp.SCL.lombok */
public class DelombokApp extends LombokApp { public class DelombokApp extends LombokApp {
/* renamed from: lombok.delombok.DelombokApp$1 reason: invalid class name */ /* renamed from: lombok.delombok.DelombokApp$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/delombok/DelombokApp$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DelombokApp$1.SCL.lombok */
class AnonymousClass1 extends ClassLoader { class AnonymousClass1 extends ClassLoader {
private final /* synthetic */ JarFile val$toolsJarFile; private final /* synthetic */ JarFile val$toolsJarFile;
private final /* synthetic */ File val$toolsJar; private final /* synthetic */ File val$toolsJar;
/* renamed from: lombok.delombok.DelombokApp$1$1 reason: invalid class name and collision with other inner class name */ /* renamed from: lombok.delombok.DelombokApp$1$1 reason: invalid class name and collision with other inner class name */
/* loaded from: com.discord-121110.apk:lombok/delombok/DelombokApp$1$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DelombokApp$1$1.SCL.lombok */
class C04161 implements Enumeration<URL> { class C04161 implements Enumeration<URL> {
private boolean first = false; private boolean first = false;
private final /* synthetic */ Enumeration val$parent; private final /* synthetic */ Enumeration val$parent;

View File

@ -8,7 +8,7 @@ import java.util.Iterator;
import java.util.List; import java.util.List;
import javax.tools.JavaFileObject; import javax.tools.JavaFileObject;
import lombok.javac.CommentInfo; import lombok.javac.CommentInfo;
/* loaded from: com.discord-121110.apk:lombok/delombok/DelombokResult.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DelombokResult.SCL.lombok */
public class DelombokResult { public class DelombokResult {
private final List<CommentInfo> comments; private final List<CommentInfo> comments;
private final List<Integer> textBlockStarts; private final List<Integer> textBlockStarts;

View File

@ -12,15 +12,15 @@ import lombok.javac.CommentInfo;
import lombok.javac.Javac; import lombok.javac.Javac;
import lombok.javac.PackageName; import lombok.javac.PackageName;
import lombok.javac.handlers.JavacHandlerUtil; import lombok.javac.handlers.JavacHandlerUtil;
/* loaded from: com.discord-121110.apk:lombok/delombok/DocCommentIntegrator.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DocCommentIntegrator.SCL.lombok */
public class DocCommentIntegrator { public class DocCommentIntegrator {
private static final Pattern CONTENT_STRIPPER = Pattern.compile("^(?:\\s*\\*)?(.*?)$", 8); private static final Pattern CONTENT_STRIPPER = Pattern.compile("^(?:\\s*\\*)?(.*?)$", 8);
/* loaded from: com.discord-121110.apk:lombok/delombok/DocCommentIntegrator$CommentAttacher_8.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DocCommentIntegrator$CommentAttacher_8.SCL.lombok */
private static class CommentAttacher_8 { private static class CommentAttacher_8 {
/* renamed from: lombok.delombok.DocCommentIntegrator$CommentAttacher_8$1 reason: invalid class name */ /* renamed from: lombok.delombok.DocCommentIntegrator$CommentAttacher_8$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/delombok/DocCommentIntegrator$CommentAttacher_8$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/DocCommentIntegrator$CommentAttacher_8$1.SCL.lombok */
class AnonymousClass1 implements Tokens.Comment { class AnonymousClass1 implements Tokens.Comment {
private final /* synthetic */ String val$docCommentContent_; private final /* synthetic */ String val$docCommentContent_;
private final /* synthetic */ JCTree val$node; private final /* synthetic */ JCTree val$node;

View File

@ -7,11 +7,11 @@ import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map; import java.util.Map;
/* loaded from: com.discord-121110.apk:lombok/delombok/FormatPreferenceScanner.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/FormatPreferenceScanner.SCL.lombok */
public class FormatPreferenceScanner { public class FormatPreferenceScanner {
/* renamed from: lombok.delombok.FormatPreferenceScanner$1 reason: invalid class name */ /* renamed from: lombok.delombok.FormatPreferenceScanner$1 reason: invalid class name */
/* loaded from: com.discord-121110.apk:lombok/delombok/FormatPreferenceScanner$1.SCL.lombok */ /* loaded from: com.discord-121111.apk:lombok/delombok/FormatPreferenceScanner$1.SCL.lombok */
class AnonymousClass1 extends Reader { class AnonymousClass1 extends Reader {
int pos = 0; int pos = 0;
int max; int max;

Some files were not shown because too many files have changed in this diff Show More