• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Tell R8 that the following methods are check not null methods, and to
2# replace invocations to them with a more concise nullness check that produces
3# (slightly) less informative error messages
4
5-convertchecknotnull class com.google.common.base.Preconditions {
6  ** checkNotNull(...);
7}
8
9-convertchecknotnull class java.util.Objects {
10  ** requireNonNull(...);
11}
12
13-convertchecknotnull class kotlin.jvm.internal.Intrinsics {
14  void checkNotNull(...);
15  void checkExpressionValueIsNotNull(...);
16  void checkNotNullExpressionValue(...);
17  void checkReturnedValueIsNotNull(...);
18  void checkFieldIsNotNull(...);
19  void checkParameterIsNotNull(...);
20  void checkNotNullParameter(...);
21}
22
23-convertchecknotnull class dagger.internal.Preconditions {
24  ** checkNotNull*(...);
25}
26