blob: 928835ea332698d8e67ce837ea7f5f11428040d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Tell R8 that the following methods are check not null methods, and to
# replace invocations to them with a more concise nullness check that produces
# (slightly) less informative error messages.
# Note that we omit such optimizations for `Objects.requireNonNull`, as such
# messages are explicit and surfaced in the framework across API boundaries.
-convertchecknotnull class com.google.common.base.Preconditions {
** checkNotNull(...);
}
-convertchecknotnull class kotlin.jvm.internal.Intrinsics {
void checkNotNull(...);
void checkExpressionValueIsNotNull(...);
void checkNotNullExpressionValue(...);
void checkReturnedValueIsNotNull(...);
void checkFieldIsNotNull(...);
void checkParameterIsNotNull(...);
void checkNotNullParameter(...);
}
-convertchecknotnull class dagger.internal.Preconditions {
** checkNotNull*(...);
}
|