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