Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 342 Bytes

File metadata and controls

7 lines (6 loc) · 342 Bytes

Dagger @Provides methods may not return null unless annotated with @Nullable. Such a method will cause a NullPointerException at runtime if the return null path is ever taken.

If you believe the return null path can never be taken, please throw a RuntimeException instead. Otherwise, please annotate the method with @Nullable.