mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Add missing checkNotNull to bitmapLoader.
#minor-release
PiperOrigin-RevId: 540309118
(cherry picked from commit cf21add916)
This commit is contained in:
parent
3cfdd4fdc5
commit
648e9943e5
1 changed files with 1 additions and 1 deletions
|
|
@ -1584,7 +1584,7 @@ public class MediaSession {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
public BuilderT setBitmapLoader(BitmapLoader bitmapLoader) {
|
||||
this.bitmapLoader = bitmapLoader;
|
||||
this.bitmapLoader = checkNotNull(bitmapLoader);
|
||||
return (BuilderT) this;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue