google / volley

https://google.github.io/volley
Apache License 2.0
3.37k stars 751 forks source link

Fix nullability issue in sample code #447

Closed jpd236 closed 1 year ago

jpd236 commented 1 year ago

ImageLoader.ImageCache.getBitmap is @Nullable, so the Kotlin code should return Bitmap?, not Bitmap. Otherwise, the code may fail to compile or crash at runtime due to added safety checks, depending on compiler behavior.

See #445