Skip to content

Commit

Permalink
manually fix some runtime issues
Browse files Browse the repository at this point in the history
Summary: clearing out remaining nullsafe issues last seen through 9/12. all of these are runtime problems that were caught with the logger, but the mod was unable to fix itself

Differential Revision: D64195752

fbshipit-source-id: c7b5a5c71487f13ea6506de3fb0561622248097c
  • Loading branch information
jocelynluizzi13 authored and facebook-github-bot committed Oct 15, 2024
1 parent a21915c commit 7f8baaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ public static void setupHierarchy(
@Prop(optional = true) ScalingUtils.ScaleType placeholderImageScaleType,
@Prop(optional = true, resType = DRAWABLE) Drawable progressBarImage,
@Prop(optional = true) ScalingUtils.ScaleType progressBarImageScaleType,
@Prop(optional = true, resType = DRAWABLE) Drawable retryImage,
@Prop(optional = true, resType = DRAWABLE) @Nullable Drawable retryImage,
@Prop(optional = true) ScalingUtils.ScaleType retryImageScaleType,
@Prop(optional = true) @Nullable RoundingParams roundingParams,
@Prop(optional = true) ColorFilter colorFilter,
@Prop(optional = true) @Nullable ColorFilter colorFilter,
GenericDraweeHierarchy draweeHierarchy) {

if (placeholderImage == null) {
Expand Down

0 comments on commit 7f8baaa

Please sign in to comment.