spierce7
07/29/2021, 2:53 AMshouldEqual, but the correct answer calls the function shouldMatch. There were lots of small little mistakes in the correct answers that make you question whether or not it’s the correct answer.spierce7
07/29/2021, 2:54 AMDelegates.notNull() exist when there is lateinit ?ephemient
07/29/2021, 2:57 AMspierce7
07/29/2021, 3:00 AMDelegates.notNull() was a thing, and based on their previous mistakes I questioned whether they were referring to lateinit as a delegate. 😛 Obviously I missed that one.spierce7
07/29/2021, 3:01 AMspierce7
07/29/2021, 3:03 AMpublic static String test;
@NotNull
public static final String getTest() {
String var10000 = test;
if (var10000 == null) {
Intrinsics.throwUninitializedPropertyAccessException("test");
}
return var10000;
}
public static final void setTest(@NotNull String var0) {
Intrinsics.checkNotNullParameter(var0, "<set-?>");
test = var0;
}ephemient
07/29/2021, 3:19 AMephemient
07/29/2021, 3:21 AMspierce7
07/29/2021, 4:09 AMephemient
07/29/2021, 4:24 AMephemient
07/29/2021, 4:26 AMspierce7
07/29/2021, 4:37 AM